2024-05-14 11:56:24 +04:00
|
|
|
|
using FurnitureAssemblyContracts.Attributes;
|
|
|
|
|
using FurnitureAssemblyDataModels.Models;
|
2024-04-29 18:59:10 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FurnitureAssemblyContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ImplementerViewModel : IImplementerModel
|
|
|
|
|
{
|
2024-05-14 11:56:24 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-04-29 18:59:10 +04:00
|
|
|
|
public int Id { get; set; }
|
2024-05-14 11:56:24 +04:00
|
|
|
|
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-04-29 18:59:10 +04:00
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
2024-05-14 11:56:24 +04:00
|
|
|
|
[Column(title: "Пароль", width: 150)]
|
2024-04-29 18:59:10 +04:00
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2024-05-14 11:56:24 +04:00
|
|
|
|
[Column(title: "Опыт работы", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
2024-04-29 18:59:10 +04:00
|
|
|
|
public int WorkExperience { get; set; }
|
2024-05-14 11:56:24 +04:00
|
|
|
|
[Column(title: "Квалификация", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
2024-04-29 18:59:10 +04:00
|
|
|
|
public int Qualification { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|