2024-05-08 15:04:44 +04:00
|
|
|
|
using ConfectioneryDataModels.Models;
|
2024-05-22 14:38:56 +04:00
|
|
|
|
using ConfectioneryContracts.Attributes;
|
2024-05-08 15:04:44 +04:00
|
|
|
|
namespace ConfectioneryContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ImplementerViewModel : IImplementerModel
|
|
|
|
|
{
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-05-08 15:04:44 +04:00
|
|
|
|
public int Id { get; set; }
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(title: "ФИО исполнителя", gridViewAutoSize:
|
|
|
|
|
GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-05-08 15:04:44 +04:00
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(title: "Стаж работы", width: 130)]
|
2024-05-08 15:04:44 +04:00
|
|
|
|
public int WorkExperience { get; set; } = 0;
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(title: "Квалификация", width: 130)]
|
2024-05-08 15:04:44 +04:00
|
|
|
|
public int Qualification { get; set; } = 0;
|
2024-05-22 14:38:56 +04:00
|
|
|
|
[Column(title: "Пароль", width: 150)]
|
2024-05-08 15:04:44 +04:00
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|