PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectionaryContracts/ViewModels/ImplementerViewModel.cs

28 lines
758 B
C#
Raw Normal View History

2024-05-04 23:59:55 +04:00
using ConfectioneryDataModels.Models;
using System;
2024-05-04 15:51:52 +04:00
using System.Collections.Generic;
2024-05-04 23:59:55 +04:00
using System.ComponentModel;
2024-05-04 15:51:52 +04:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.ViewModels
{
2024-05-04 23:59:55 +04:00
public class ImplementerViewModel : IImplementerModel
2024-05-04 15:51:52 +04:00
{
2024-05-04 23:59:55 +04:00
public int Id { get; set; }
[DisplayName("ФИО исполнителя")]
public string ImplementerFIO { get; set; } = string.Empty;
[DisplayName("Пароль")]
public string Password { get; set; } = string.Empty;
[DisplayName("Стаж работы")]
public int WorkExperience { get; set; }
[DisplayName("Квалификация")]
public int Qualification { get; set; }
2024-05-04 15:51:52 +04:00
}
}