23 lines
599 B
C#
23 lines
599 B
C#
|
using AutomobilePlantDataModels.Models;
|
|||
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace AutomobilePlantContracts.ViewModels
|
|||
|
{
|
|||
|
public class ImplementerViewModel : IImplementerModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
[DisplayName("FIO")]
|
|||
|
public string ImplementerFIO { get; set; } = string.Empty;
|
|||
|
|
|||
|
[DisplayName("Password")]
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
|
|||
|
[DisplayName("Work expirience")]
|
|||
|
public int WorkExperience { get; set; }
|
|||
|
|
|||
|
[DisplayName("Qualification")]
|
|||
|
public int Qualification { get; set; }
|
|||
|
}
|
|||
|
}
|