PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopDataModels/IShopModel.cs

14 lines
329 B
C#

using CarRepairShopDataModels.Models;
namespace CarRepairShopDataModels
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
Dictionary<int, (IRepairModel, int)> ShopRepairs { get; }
int MaxCapacity { get; }
}
}