Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantContracts/ViewModels/ImplementerViewModel.cs

30 lines
981 B
C#
Raw Normal View History

2024-05-16 20:23:36 +04:00
using PrecastConcretePlantContracts.Attributes;
using PrecastConcretePlantDataModels.Models;
2024-04-18 21:47:34 +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-16 20:23:36 +04:00
[Column(visible: false)]
2024-04-18 21:47:34 +04:00
public int Id { get; set; }
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-04-18 21:47:34 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(title: "Пароль", width: 70)]
2024-04-18 21:47:34 +04:00
public string Password { get; set; } = string.Empty;
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(title: "Стаж работы", width: 100)]
2024-04-18 21:47:34 +04:00
public int WorkExperience { get; set; }
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(title: "Квалификация исполнителя", width: 120)]
2024-04-18 21:47:34 +04:00
public int Qualification { get; set; }
}
}