30 lines
898 B
C#
Raw Permalink Normal View History

2024-05-13 21:57:51 +04:00
using PrecastConcretePlantContracts.Attributes;
using PrecastConcretePlantDataModels.Models;
2024-05-01 20:13:44 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.ViewModels
{
public class ImplementerViewModel : IImplementerModel
{
2024-05-13 21:57:51 +04:00
[Column(visible: false)]
public int Id { get; set; }
2024-05-01 20:13:44 +04:00
2024-05-13 21:57:51 +04:00
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string ImplementerFIO { get; set; } = string.Empty;
2024-05-01 20:13:44 +04:00
2024-05-13 21:57:51 +04:00
[Column(title: "Пароль", width: 70)]
public string Password { get; set; } = string.Empty;
2024-05-01 20:13:44 +04:00
2024-05-13 21:57:51 +04:00
[Column(title: "Стаж работы", width: 100)]
public int WorkExperience { get; set; }
2024-05-01 20:13:44 +04:00
2024-05-13 21:57:51 +04:00
[Column(title: "Квалификация", width: 120)]
public int Qualification { get; set; }
2024-05-01 20:13:44 +04:00
}
}