2023-05-07 17:52:26 +04:00
|
|
|
|
using PrecastConcretePlantContracts.Attributes;
|
|
|
|
|
using PrecastConcretePlantDataModels.Models;
|
2023-02-05 19:12:17 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ComponentViewModel : IComponentModel
|
|
|
|
|
{
|
2023-05-07 17:52:26 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-02-05 19:12:17 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2023-05-07 17:52:26 +04:00
|
|
|
|
[Column("Название компонента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2023-02-05 19:12:17 +04:00
|
|
|
|
public string ComponentName { get; set; } = string.Empty;
|
|
|
|
|
|
2023-05-07 17:52:26 +04:00
|
|
|
|
[Column("Цена", width: 80)]
|
2023-02-05 19:12:17 +04:00
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|