ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarContracts/ViewModels/ImplementerViewModel.cs

32 lines
916 B
C#
Raw Normal View History

2024-06-01 17:37:58 +04:00
using SushiBarContracts.Attributes;
using SushiBarDataModels;
2024-05-04 17:27:30 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.ViewModels
{
2024-06-01 17:37:58 +04:00
public class ImplementerViewModel : IImplementerModel
{
[Column(visible: false)]
public int Id { get; set; }
2024-05-04 17:27:30 +04:00
2024-06-01 17:37:58 +04:00
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string ImplementerFIO { get; set; } = string.Empty;
2024-05-04 17:27:30 +04:00
2024-06-01 17:37:58 +04:00
[Column(title: "Пароль", width: 100)]
2024-05-04 17:27:30 +04:00
2024-06-01 17:37:58 +04:00
public string Password { get; set; } = string.Empty;
2024-05-04 17:27:30 +04:00
2024-06-01 17:37:58 +04:00
[Column(title: "Стаж работы", width: 60)]
public int WorkExperience { get; set; }
[Column(title: "Квалификация", width: 60)]
public int Qualification { get; set; }
}
2024-05-04 17:27:30 +04:00
}
2024-06-01 17:37:58 +04:00