PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/ViewModels/PastryViewModel.cs

20 lines
742 B
C#
Raw Normal View History

2024-03-13 14:54:56 +04:00
using ConfectioneryDataModels.Models;
using System.ComponentModel;
2024-05-22 14:38:56 +04:00
using ConfectioneryContracts.Attributes;
2024-03-13 14:54:56 +04:00
namespace ConfectioneryContracts.ViewModels
{
public class PastryViewModel : IPastryModel
{
2024-05-22 14:38:56 +04:00
[Column(visible: false)]
public int Id { get; set; }
[Column(title: "Название кондитерского изделия", gridViewAutoSize:
GridViewAutoSize.Fill, isUseAutoSize: true)]
public string PastryName { get; set; } = string.Empty;
[Column(title: "Цена", width: 80)]
2024-03-13 14:54:56 +04:00
public double Price { get; set; }
2024-05-22 14:38:56 +04:00
[Column(visible: false)]
2024-03-13 14:54:56 +04:00
public Dictionary<int, (IComponentModel, int)>
PastryComponents { get; set; } = new();
}
}