2023-04-23 14:33:53 +04:00
|
|
|
|
using DressAtelierContracts.Attributes;
|
|
|
|
|
using DressAtelierDataModels.Models;
|
2023-04-10 00:06:28 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DressAtelierContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class EmployeeViewModel : IEmployeeModel
|
|
|
|
|
{
|
2023-04-23 14:33:53 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-04-10 00:06:28 +04:00
|
|
|
|
public int ID { get; set; }
|
2023-04-23 14:33:53 +04:00
|
|
|
|
[Column(title:"Employee's fullname",width: 150)]
|
2023-04-10 00:06:28 +04:00
|
|
|
|
public string FullName { get; set; } = string.Empty;
|
2023-04-23 14:33:53 +04:00
|
|
|
|
[Column(title: "Password", width: 150)]
|
2023-04-10 00:06:28 +04:00
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2023-04-23 14:33:53 +04:00
|
|
|
|
[Column(title: "WorkExperience", width: 50)]
|
2023-04-10 00:06:28 +04:00
|
|
|
|
public int WorkExperience { get; set; }
|
2023-04-23 14:33:53 +04:00
|
|
|
|
[Column(title: "Qualification", width: 50)]
|
2023-04-20 00:17:22 +04:00
|
|
|
|
public int Qualification { get; set; }
|
2023-04-10 00:06:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|