16 lines
487 B
C#
16 lines
487 B
C#
using CarRepairShopDataModels;
|
|
using CarRepairShopDataModels.Models;
|
|
|
|
namespace CarRepairShopContracts.BindingModels
|
|
{
|
|
public class ShopBindingModel : IShopModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string ShopName { get; set; }
|
|
public string Address { get; set; }
|
|
public DateTime DateOpen { get; set; }
|
|
public int MaxCapacity { get; set; }
|
|
public Dictionary<int, (IRepairModel, int)> ShopRepairs { get; set; } = new();
|
|
}
|
|
}
|