2023-03-12 18:36:23 +04:00
|
|
|
|
using AutomobilePlantDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ShopBindingModel : IShopModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Address { get; set; } = string.Empty;
|
2023-03-25 21:40:02 +04:00
|
|
|
|
|
2023-03-25 22:45:18 +04:00
|
|
|
|
public DateTime OpeningDate { get; set; }
|
2023-03-12 18:36:23 +04:00
|
|
|
|
|
|
|
|
|
public Dictionary<int, (ICarModel, int)> ShopCars { get; set; }
|
2023-03-26 02:47:18 +04:00
|
|
|
|
public int MaxCountCars { get; set; }
|
2023-03-12 18:36:23 +04:00
|
|
|
|
}
|
|
|
|
|
}
|