2023-03-28 10:24:47 +04:00
|
|
|
|
using LawFirmDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace LawFirmContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ShopBindingModel : IShopModel
|
|
|
|
|
{
|
|
|
|
|
public string ShopName { get; set; } = string.Empty;
|
|
|
|
|
public string Address { get; set; } = string.Empty;
|
2023-04-25 03:51:22 +04:00
|
|
|
|
public DateTime DateOpen { get; set; } = DateTime.SpecifyKind(DateTime.Now, DateTimeKind.Utc);
|
2023-04-11 01:53:51 +04:00
|
|
|
|
public int Capacity { get; set; }
|
|
|
|
|
public Dictionary<int, (IDocumentModel, int)> ShopDocuments { get; set; } = new();
|
2023-03-28 10:24:47 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|