PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopDataModels/Models/IShopModel.cs
2024-04-27 22:23:26 +04:00

17 lines
339 B
C#

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