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