2024-05-16 00:34:01 +04:00
|
|
|
|
using AutomobilePlantContracts.Attributes;
|
|
|
|
|
using AutomobilePlantDataModels.Models;
|
2024-04-19 22:52:44 +04:00
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ImplementerViewModel : IImplementerModel
|
|
|
|
|
{
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id { get; set; }
|
2024-04-19 22:52:44 +04:00
|
|
|
|
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[Column("FIO", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
2024-04-19 22:52:44 +04:00
|
|
|
|
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[Column("Password", width: 150)]
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2024-04-19 22:52:44 +04:00
|
|
|
|
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[Column("Work expirience", width: 150)]
|
|
|
|
|
public int WorkExperience { get; set; }
|
2024-04-19 22:52:44 +04:00
|
|
|
|
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[Column("Qualification", width: 150)]
|
|
|
|
|
public int Qualification { get; set; }
|
2024-04-19 22:52:44 +04:00
|
|
|
|
}
|
|
|
|
|
}
|