PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryContracts/ViewModels/PastryViewModel.cs

24 lines
625 B
C#
Raw Permalink Normal View History

2023-01-31 13:12:06 +04:00
using ConfectioneryDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.ViewModels
{
public class PastryViewModel : IPastryModel
2023-01-31 13:12:06 +04:00
{
public int Id { get; set; }
[DisplayName("Название изделия")]
public string PastryName { get; set; } = string.Empty;
2023-01-31 13:12:06 +04:00
[DisplayName("Цена")]
public double Price { get; set; }
public Dictionary<int, (IComponentModel, int)> PastryComponents { get; set; } = new();
2023-01-31 13:12:06 +04:00
}
}