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

13 lines
296 B
C#
Raw Normal View History

2024-02-13 00:17:40 +04:00
using CarRepairShopDataModels.Models;
namespace CarRepairShopDataModels
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
Dictionary<int, (IRepairModel, int)> ShopRepairs { get; }
}
}