24 lines
664 B
C#
24 lines
664 B
C#
using AutomobilePlantContracts.Attributes;
|
|
using AutomobilePlantDataModels.Models;
|
|
|
|
namespace AutomobilePlantContracts.ViewModels
|
|
{
|
|
public class ImplementerViewModel : IImplementerModel
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
|
|
[Column("FIO", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
|
|
|
[Column("Password", width: 150)]
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
[Column("Work expirience", width: 150)]
|
|
public int WorkExperience { get; set; }
|
|
|
|
[Column("Qualification", width: 150)]
|
|
public int Qualification { get; set; }
|
|
}
|
|
}
|