PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopDataModels/Models/IShopModel.cs

17 lines
339 B
C#
Raw Normal View History

2024-04-14 02:36:43 +04:00
using CarRepairShopDataModels;
namespace CarRepairShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpening { get; }
Dictionary<int, (IRepairModel, int)> ShopRepairs { get; }
2024-04-27 22:23:26 +04:00
int RepairMaxAmount { get; }
2024-04-14 02:36:43 +04:00
}
}