17 lines
339 B
C#
17 lines
339 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; }
|
|
|
|
int RepairMaxAmount { get; }
|
|
}
|
|
} |