21 lines
675 B
C#
21 lines
675 B
C#
using SushiBarContracts.Attributes;
|
|
using SushiBarDataModels.Models;
|
|
|
|
namespace SushiBarContracts.ViewModels
|
|
{
|
|
public class SushiViewModel : ISushiModel
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
[Column(title: "Суши", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string SushiName { get; set; } = string.Empty;
|
|
[Column(title: "Цена", width: 150, format: "c2")]
|
|
public double Price { get; set; }
|
|
[Column(visible: false)]
|
|
public Dictionary<int, (IIngredientModel, int)> SushiIngredients
|
|
{
|
|
get;
|
|
set;
|
|
} = new();
|
|
}
|
|
} |