PIbd-23_Minhasapov_R.H._Aut.../AutomobilePlant/AutomobilePlantDataModels/Models/IShopModel.cs

17 lines
377 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantDataModels.Models
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
DateTime FoundingDate { get; }
Dictionary<int, (ICarModel, int)> ShopCars { get; }
}
}