20 lines
848 B
C#
Raw Normal View History

2024-05-16 17:03:51 +04:00
using FlowerShopContracts.Attributes;
using FlowerShopDataModels.Models;
2024-04-18 18:48:25 +04:00
namespace FlowerShopContracts.ViewModels
{
public class ImplementerViewModel : IImplementerModel
{
2024-05-16 17:03:51 +04:00
[Column(visible: false)]
2024-04-18 18:48:25 +04:00
public int Id { get; set; }
2024-05-16 17:03:51 +04:00
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
2024-04-18 18:48:25 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
2024-05-16 17:03:51 +04:00
[Column(title: "Пароль", width: 100)]
2024-04-18 18:48:25 +04:00
public string Password { get; set; } = string.Empty;
2024-05-16 17:03:51 +04:00
[Column(title: "Опыт исполнителя" ,gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-04-18 18:48:25 +04:00
public int WorkExperience { get; set; }
2024-05-16 17:03:51 +04:00
[Column(title: "Квалификация исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-04-18 18:48:25 +04:00
public int Qualification { get; set; }
}
}