PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaContracts/ViewModels/ImplementerViewModel.cs

30 lines
873 B
C#
Raw Normal View History

2023-05-14 07:44:14 +04:00
using PizzeriaContracts.Attributes;
using PizzeriaDataModels.Models;
2023-04-18 10:41:11 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.ViewModels
{
public class ImplementerViewModel : IImplementerModel
{
2023-05-14 07:44:14 +04:00
[Column(visible: false)]
2023-04-18 10:41:11 +04:00
public int Id { get; set; }
2023-06-14 14:25:52 +04:00
[Column(title: "ФИО исполнителя", width: 300)]
2023-04-18 10:41:11 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
2023-05-14 07:44:14 +04:00
[Column(title: "Пароль", width: 100)]
2023-04-18 10:41:11 +04:00
public string Password { get; set; } = string.Empty;
2023-06-14 14:25:52 +04:00
[Column(title: "Стаж работы", width: 100)]
2023-04-18 10:41:11 +04:00
public int WorkExperience { get; set; }
2023-06-14 14:25:52 +04:00
[Column(title: "Квалификация", width: 100)]
2023-04-18 10:41:11 +04:00
public int Qualification { get; set; }
}
}