2023-04-09 23:25:46 +04:00
|
|
|
|
using System.ComponentModel;
|
2023-05-04 16:10:15 +04:00
|
|
|
|
using SushiBarContracts.Attributes;
|
2023-04-09 23:25:46 +04:00
|
|
|
|
using SushiBarDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
public class ImplementerViewModel : IImplementerModel
|
|
|
|
|
{
|
2023-05-04 16:10:15 +04:00
|
|
|
|
[Column(visible : false)]
|
2023-04-09 23:25:46 +04:00
|
|
|
|
public int Id { get; init; }
|
2023-05-04 16:10:15 +04:00
|
|
|
|
[Column("Implementer FIO", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2023-04-09 23:25:46 +04:00
|
|
|
|
public string ImplementerFio { get; set; } = string.Empty;
|
2023-05-04 16:10:15 +04:00
|
|
|
|
[Column("Password", width: 150)]
|
2023-04-09 23:25:46 +04:00
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2023-05-04 16:10:15 +04:00
|
|
|
|
[Column("Work Experience", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
2023-04-09 23:25:46 +04:00
|
|
|
|
public int WorkExperience { get; set; }
|
2023-05-04 16:10:15 +04:00
|
|
|
|
[Column("Qualification", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
2023-04-09 23:25:46 +04:00
|
|
|
|
public int Qualification { get; set; }
|
|
|
|
|
}
|