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

17 lines
376 B
C#

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 OpeningDate { get; }
Dictionary<int, (ICarModel, int)> ShopCars { get; }
}
}