PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopContracts/ViewModels/ImplementerViewModel.cs

30 lines
938 B
C#
Raw Permalink Normal View History

2024-05-17 00:53:12 +04:00
using CarRepairShopContracts.Attributes;
using CarRepairShopDataModels.Models;
2024-05-02 22:47:27 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarRepairShopContracts.ViewModels
{
public class ImplementerViewModel : IImplementerModel
{
2024-05-17 00:53:12 +04:00
[Column(visible: false)]
2024-05-02 22:47:27 +04:00
public int Id { get; set; }
2024-05-17 00:53:12 +04:00
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-05-02 22:47:27 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
2024-05-17 00:53:12 +04:00
[Column(title: "Пароль", width: 150)]
2024-05-02 22:47:27 +04:00
public string Password { get; set; } = string.Empty;
2024-05-17 00:53:12 +04:00
[Column(title: "Стаж работы", width: 100)]
2024-05-02 22:47:27 +04:00
public int WorkExperience { get; set; }
2024-05-17 00:53:12 +04:00
[Column(title: "Квалификация", width: 100)]
2024-05-02 22:47:27 +04:00
public int Qualification { get; set; }
}
}