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

11 lines
240 B
C#

namespace CarRepairShopDataModels.Models
{
public interface IRepairModel : IId
{
string RepairName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> RepairComponents { get; }
}
}