24 lines
737 B
C#
24 lines
737 B
C#
using FlowerShopContracts.Attributes;
|
|
using FlowerShopDataModels.Models;
|
|
|
|
namespace FlowerShopContracts.ViewModels
|
|
{
|
|
public class ImplementerViewModel : IImplementerModel
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
|
|
[Column("ФИО", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
|
|
|
[Column("Пароль", width: 200)]
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
[Column("Трудовой стаж", width: 200)]
|
|
public int WorkExperience { get; set; }
|
|
|
|
[Column("Квалификация", width: 200)]
|
|
public int Qualification { get; set; }
|
|
}
|
|
}
|