25 lines
923 B
C#
Raw Normal View History

2023-04-23 16:43:54 +04:00
using SofrwareInstallationContracts.Attributes;
using SoftwareInstallationDataModels.Models;
2023-04-10 23:07:27 +04:00
using System.ComponentModel;
namespace SofrwareInstallationContracts.ViewModels
{
public class ImplementerViewModel : IImplementerModel
{
2023-04-23 16:43:54 +04:00
[Column(visible: false)]
2023-04-10 23:07:27 +04:00
public int Id { get; set; }
2023-04-23 16:43:54 +04:00
[Column("ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2023-04-10 23:07:27 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
2023-04-23 16:43:54 +04:00
[Column("Пароль", width: 150)]
2023-04-10 23:07:27 +04:00
public string Password { get; set; } = string.Empty;
2023-04-23 16:43:54 +04:00
[Column("Стаж работы", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
2023-04-10 23:07:27 +04:00
public int WorkExperience { get; set; }
2023-04-23 16:43:54 +04:00
[Column("Квалификация", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
2023-04-10 23:07:27 +04:00
public int Qualification { get; set; }
}
}