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

30 lines
938 B
C#
Raw Normal View History

using ConfectioneryContracts.Attributes;
using ConfectioneryDataModels.Models;
2024-05-04 23:59:55 +04:00
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
{
[Column(visible: false)]
2024-05-04 23:59:55 +04:00
public int Id { get; set; }
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-05-04 23:59:55 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
[Column(title: "Пароль", width: 100)]
2024-05-04 23:59:55 +04:00
public string Password { get; set; } = string.Empty;
[Column(title: "Стаж работы", width: 100)]
2024-05-04 23:59:55 +04:00
public int WorkExperience { get; set; }
[Column(title: "Квалификация", width: 100)]
2024-05-04 23:59:55 +04:00
public int Qualification { get; set; }
2024-05-04 15:51:52 +04:00
}
}