20 lines
848 B
C#
20 lines
848 B
C#
using FlowerShopContracts.Attributes;
|
|
using FlowerShopDataModels.Models;
|
|
|
|
namespace FlowerShopContracts.ViewModels
|
|
{
|
|
public class ImplementerViewModel : IImplementerModel
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
|
[Column(title: "Пароль", width: 100)]
|
|
public string Password { get; set; } = string.Empty;
|
|
[Column(title: "Опыт исполнителя" ,gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public int WorkExperience { get; set; }
|
|
[Column(title: "Квалификация исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public int Qualification { get; set; }
|
|
}
|
|
}
|