2024-05-17 23:32:45 +04:00
|
|
|
|
using BarContracts.Attributes;
|
|
|
|
|
using BarDataModels.Models;
|
2024-03-30 14:30:43 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BarContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class CocktailViewModel : ICocktailModel
|
|
|
|
|
{
|
2024-05-17 23:32:45 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[Column(title: "Название коктейля", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public string CocktailName { get; set; } = string.Empty;
|
|
|
|
|
[Column(title: "Цена", width: 70)]
|
|
|
|
|
public double Price { get; set; }
|
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public Dictionary<int, (IComponentModel, int)> CocktailComponents
|
2024-03-30 14:30:43 +04:00
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
|
|
|
|
}
|
|
|
|
|
}
|