2024-05-19 19:55:10 +04:00
|
|
|
|
using SecuritySystemContracts.Attributes;
|
|
|
|
|
using SecuritySystemDataModels.Models;
|
2024-02-25 18:57:38 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace SecuritySystemContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ComponentViewModel : IComponentModel
|
|
|
|
|
{
|
2024-05-19 19:55:10 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-02-25 18:57:38 +04:00
|
|
|
|
public int Id { get; set; }
|
2024-05-19 19:55:10 +04:00
|
|
|
|
[Column(title: "Название компонента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-02-25 18:57:38 +04:00
|
|
|
|
public string ComponentName { get; set; } = string.Empty;
|
2024-05-19 19:55:10 +04:00
|
|
|
|
[Column(title: "Цена", width: 150)]
|
2024-02-25 18:57:38 +04:00
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|