2023-04-22 19:35:36 +04:00

24 lines
614 B
C#

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