23 lines
707 B
C#
23 lines
707 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using FlowerShopDataModels.Models;
|
|
|
|
namespace FlowerShopContracts.ViewModels
|
|
{
|
|
public class ShopViewModel : IShopModel
|
|
{
|
|
public int Id { get; set; }
|
|
[DisplayName("Название магазина")]
|
|
public string ShopName { get; set; }
|
|
[DisplayName("Адрес магазина")]
|
|
public string Address { get; set; }
|
|
[DisplayName("Дата открытия")]
|
|
public DateTime DateOpen { get; set; }
|
|
public Dictionary<int, (IFlowerModel, int)> ShopFlowers { get; set; } = new();
|
|
}
|
|
}
|