11 lines
240 B
C#
11 lines
240 B
C#
|
namespace CarRepairShopDataModels.Models
|
|||
|
{
|
|||
|
public interface IRepairModel : IId
|
|||
|
{
|
|||
|
string RepairName { get; }
|
|||
|
double Price { get; }
|
|||
|
Dictionary<int, (IComponentModel, int)> RepairComponents { get; }
|
|||
|
|
|||
|
}
|
|||
|
}
|