2024-05-16 17:00:28 +04:00
|
|
|
|
using PlumbingRepairContracts.Attributes;
|
|
|
|
|
using PlumbingRepairDataModels.Models;
|
2024-04-19 18:02:08 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ImplementerViewModel : IImplementerModel
|
|
|
|
|
{
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id { get; set; }
|
2024-04-19 18:02:08 +04:00
|
|
|
|
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
2024-04-19 18:02:08 +04:00
|
|
|
|
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(title: "Пароль", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-04-19 18:02:08 +04:00
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(title: "Стаж работы", width: 150)]
|
|
|
|
|
public int WorkExperience { get; set; }
|
|
|
|
|
[Column(title: "Квалификация", width: 150)]
|
|
|
|
|
public int Qualification { get; set; }
|
2024-04-19 18:02:08 +04:00
|
|
|
|
}
|
|
|
|
|
}
|