Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreContracts/ViewModels/ImplementerViewModel.cs

27 lines
952 B
C#
Raw Normal View History

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