17 lines
601 B
C#
17 lines
601 B
C#
using FurnitureAssemblyContracts.Attributes;
|
|
using FurnitureAssemblyDataModels.Models;
|
|
|
|
|
|
namespace FurnitureAssemblyContracts.ViewModels
|
|
{
|
|
public class ComponentViewModel : IComponentModel
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
[Column(title: "Название компонента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string ComponentName { get; set; } = string.Empty;
|
|
[Column(title: "Цена", width: 70, isFormatable: true, formatter: "0.00##")]
|
|
public double Cost { get; set; }
|
|
}
|
|
}
|