PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopContracts/ViewModels/ImplementerViewModel.cs

20 lines
830 B
C#
Raw Permalink Normal View History

2024-05-20 22:12:07 +04:00
using CarRepairShopContracts.Attributes;
using CarRepairShopDataModels;
2024-04-22 22:29:10 +04:00
namespace CarRepairShopContracts.ViewModels
{
public class ImplementerViewModel : IImplementerModel
{
2024-05-20 22:12:07 +04:00
[Column(visible: false)]
2024-04-22 22:29:10 +04:00
public int Id { get; set; }
2024-05-20 22:12:07 +04:00
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-04-22 22:29:10 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
2024-05-20 22:12:07 +04:00
[Column(title:"Стаж работы", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
2024-04-22 22:29:10 +04:00
public int WorkExperience { get; set; } = 0;
2024-05-20 22:12:07 +04:00
[Column(title: "Квалификация", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
2024-04-22 22:29:10 +04:00
public int Qualification { get; set; } = 0;
2024-05-20 22:12:07 +04:00
[Column(title: "Пароль", width: 150)]
2024-04-22 22:29:10 +04:00
public string Password { get; set; } = string.Empty;
}
}