PIbd-22_Chernyshev_G.J._30_.../GarmentFactoryContracts/ViewModels/ComponentViewModel.cs

24 lines
674 B
C#
Raw Normal View History

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