27 lines
800 B
C#
27 lines
800 B
C#
using ConfectioneryContracts.Attributes;
|
|
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
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
|
|
[Column("Название документа", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string PastryName { get; set; } = string.Empty;
|
|
|
|
[Column("Цена", width: 100)]
|
|
public double Price { get; set; }
|
|
|
|
[Column(visible: false)]
|
|
public Dictionary<int, (IComponentModel, int)> PastryComponents { get; set; } = new();
|
|
}
|
|
}
|