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