14 lines
329 B
C#
14 lines
329 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; }
|
|
int MaxCapacity { get; }
|
|
}
|
|
}
|