24 lines
680 B
C#
Raw Normal View History

2024-05-13 21:57:51 +04:00
using PrecastConcretePlantContracts.Attributes;
using PrecastConcretePlantDataModels.Models;
2024-03-05 22:19:49 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.ViewModels
{
public class ComponentViewModel : IComponentModel
{
2024-05-13 21:57:51 +04:00
[Column(visible: false)]
public int Id { get; set; }
2024-03-05 22:19:49 +04:00
2024-05-13 21:57:51 +04:00
[Column(title: "Название компонента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string ComponentName { get; set; } = string.Empty;
2024-03-05 22:19:49 +04:00
2024-05-13 21:57:51 +04:00
[Column(title: "Цена", width: 150)]
public double Cost { get; set; }
2024-03-05 22:19:49 +04:00
}
}