kagbie3nn@mail.ru 688621e4ef 2 усл
2024-06-17 23:07:23 +04:00

20 lines
623 B
C#

using ComputersShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.BindingModels
{
public class ShopBindingModel : IShopModel
{
public int Id { get; set; }
public string ShopName { get; set; } = string.Empty;
public string Adress { get; set; } = string.Empty;
public DateTime OpeningDate { get; set; } = DateTime.Now;
public Dictionary<int, (IComputerModel, int)> ShopComputers { get; set; } = new();
public int Capacity { get; set; }
}
}