15 lines
301 B
C#
15 lines
301 B
C#
|
using CarRepairShopDataModels;
|
|||
|
|
|||
|
namespace CarRepairShopDataModels.Models
|
|||
|
{
|
|||
|
public interface IShopModel : IId
|
|||
|
{
|
|||
|
string ShopName { get; }
|
|||
|
|
|||
|
string Address { get; }
|
|||
|
|
|||
|
DateTime DateOpening { get; }
|
|||
|
|
|||
|
Dictionary<int, (IRepairModel, int)> ShopRepairs { get; }
|
|||
|
}
|
|||
|
}
|