23 lines
555 B
C#
Raw Normal View History

2024-04-14 02:36:43 +04:00
using CarRepairShopDataModels.Models;
namespace CarRepairShopContracts.BindingModels
{
public class ShopBindingModel : IShopModel
{
public int Id { get; set; }
public string ShopName { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
public DateTime DateOpening { get; set; } = DateTime.Now;
public Dictionary<int, (IRepairModel, int)> ShopRepairs
{
get;
set;
} = new();
2024-04-27 22:23:26 +04:00
public int RepairMaxAmount { get; set; }
2024-04-14 02:36:43 +04:00
}
}