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