30 lines
1018 B
C#
30 lines
1018 B
C#
using ConfectioneryContracts.Attributes;
|
|
using ConfectioneryDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ConfectioneryContracts.ViewModels
|
|
{
|
|
public class ImplementerViewModel : IImplementerModel
|
|
{
|
|
[Column("ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
|
|
|
[Column("Пароль", width: 150)]
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
[Column("Стаж работы", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
public int WorkExperience { get; set; }
|
|
|
|
[Column("Квалификация", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
public int Qualification { get; set; }
|
|
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
}
|
|
}
|