22 lines
676 B
C#
Raw Permalink Normal View History

2023-04-23 17:37:47 +04:00
using ComputerShopContracts.Attributes;
using ComputerShopDataModels.Models;
2023-01-29 18:03:10 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.ViewModels
{
public class ComponentViewModel : IComponentModel
{
2023-04-23 17:37:47 +04:00
[Column(visible: false)]
2023-01-29 18:03:10 +04:00
public int Id { get; set; }
2023-04-23 17:37:47 +04:00
[Column("Название компонента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2023-01-29 18:03:10 +04:00
public string ComponentName { get; set; } = string.Empty;
2023-04-23 17:37:47 +04:00
[Column("Цена", width: 100)]
2023-01-29 18:03:10 +04:00
public double Cost { get; set; }
}
}