ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryContracts/ViewModels/PastryViewModel.cs

24 lines
758 B
C#
Raw Normal View History

2024-02-15 22:55:26 +04:00
using ConfectioneryDataModels.Models;
2024-06-02 20:11:06 +04:00
using ConfectioneryContracts.Attributes;
2024-02-15 22:55:26 +04:00
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
{
2024-06-02 20:11:06 +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: 70)]
public double Price { get; set; }
[Column(visible: false)]
public Dictionary<int, (IComponentModel, int)> PastryComponents { get; set; } = new();
2024-02-15 22:55:26 +04:00
}
}