20 lines
588 B
C#
Raw Normal View History

2023-04-08 16:23:25 +04:00
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 ShopAddress { get; set; } = string.Empty;
public DateTime DateOpening { get; set; } = DateTime.Now;
public Dictionary<int, (IComputerModel, int)> Computers { get; set; } = new();
2023-04-23 22:59:36 +04:00
public int Capacity { get; set; }
}
2023-04-08 16:23:25 +04:00
}