26 lines
785 B
C#
Raw Normal View History

2024-04-03 17:52:29 +04:00
using PizzeriaContracts.Attributes;
using PizzeriaDataModels.Models;
2024-02-01 10:43:41 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.ViewModels
{
public class PizzaViewModel : IPizzaModel
{
2024-04-03 17:52:29 +04:00
[Column(visible: false)]
2024-02-01 10:43:41 +04:00
public int Id { get; set; }
2024-04-03 17:52:29 +04:00
[Column(title: "Название пиццы", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-02-01 10:43:41 +04:00
public string PizzaName { get; set; } = string.Empty;
2024-04-03 17:52:29 +04:00
[Column(title: "Цена", width: 70)]
2024-02-01 10:43:41 +04:00
public double Price { get; set; }
2024-04-03 17:52:29 +04:00
[Column(visible: false)]
2024-02-01 10:43:41 +04:00
public Dictionary<int, (IComponentModel, int)> PizzaComponents { get; set; } = new();
}
}