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

27 lines
800 B
C#
Raw Normal View History

2023-05-04 23:45:15 +04:00
using ConfectioneryContracts.Attributes;
using ConfectioneryDataModels.Models;
2023-01-31 13:12:06 +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
2023-01-31 13:12:06 +04:00
{
2023-05-04 23:45:15 +04:00
[Column(visible: false)]
2023-01-31 13:12:06 +04:00
public int Id { get; set; }
2023-05-04 23:45:15 +04:00
[Column("Название документа", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string PastryName { get; set; } = string.Empty;
2023-01-31 13:12:06 +04:00
2023-05-04 23:45:15 +04:00
[Column("Цена", width: 100)]
2023-01-31 13:12:06 +04:00
public double Price { get; set; }
2023-05-04 23:45:15 +04:00
[Column(visible: false)]
public Dictionary<int, (IComponentModel, int)> PastryComponents { get; set; } = new();
2023-01-31 13:12:06 +04:00
}
}