2023-04-23 17:37:47 +04:00
|
|
|
|
using ComputerShopContracts.Attributes;
|
|
|
|
|
using ComputerShopDataModels.Models;
|
2023-04-19 15:46:04 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputerShopContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ImplementerViewModel : IImplementerModel
|
|
|
|
|
{
|
2023-04-23 17:37:47 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-04-19 15:46:04 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2023-04-23 17:37:47 +04:00
|
|
|
|
[Column("ФИО", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2023-04-19 15:46:04 +04:00
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
|
|
|
|
|
2023-04-23 17:37:47 +04:00
|
|
|
|
[Column("Пароль", width: 200)]
|
2023-04-19 15:46:04 +04:00
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
2023-04-23 17:37:47 +04:00
|
|
|
|
[Column("Трудовой стаж", width: 200)]
|
2023-04-19 15:46:04 +04:00
|
|
|
|
public int WorkExperience { get; set; }
|
|
|
|
|
|
2023-04-23 17:37:47 +04:00
|
|
|
|
[Column("Квалификация", width: 200)]
|
2023-04-19 15:46:04 +04:00
|
|
|
|
public int Qualification { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|