23 lines
657 B
C#
Raw Normal View History

2023-02-13 19:43:19 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
using PizzeriaDataModels;
2023-05-05 00:09:30 +04:00
using PizzeriaContracts.Attributes;
2023-02-13 19:43:19 +03:00
namespace PizzeriaContracts.ViewModels
{
public class ComponentViewModel : IComponentModel
{
2023-05-05 00:09:30 +04:00
[Column(visible: false)]
2023-02-13 19:43:19 +03:00
public int Id { get; set; }
2023-05-05 00:09:30 +04:00
[Column("Название компонента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2023-02-13 19:43:19 +03:00
public string ComponentName { get; set; } = string.Empty;
2023-05-05 00:09:30 +04:00
[Column("Цена", width: 80)]
2023-02-13 19:43:19 +03:00
public double Cost { get; set; }
}
}