Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantContracts/ViewModels/ComponentViewModel.cs

24 lines
716 B
C#
Raw Normal View History

2024-05-16 20:23:36 +04:00
using PrecastConcretePlantContracts.Attributes;
using PrecastConcretePlantDataModels.Models;
2024-03-22 20:10:17 +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-16 20:23:36 +04:00
[Column(visible: false)]
2024-03-22 20:10:17 +04:00
public int Id { get; set; }
2024-05-16 20:23:36 +04:00
[Column(title: "Название компонента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-03-22 20:10:17 +04:00
public string ComponentName { get; set; } = string.Empty;
2024-05-16 20:23:36 +04:00
[Column(title: "Цена", width: 150)]
2024-03-22 20:10:17 +04:00
public double Cost { get; set; }
}
}