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
|
|
|
|
}
|
|
|
|
|
}
|