26 lines
833 B
C#
26 lines
833 B
C#
using DressAtelierContracts.Attributes;
|
|
using DressAtelierDataModels.Models;
|
|
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
|
|
{
|
|
[Column(visible: false)]
|
|
public int ID { get; set; }
|
|
[Column(title:"Employee's fullname",width: 150)]
|
|
public string FullName { get; set; } = string.Empty;
|
|
[Column(title: "Password", width: 150)]
|
|
public string Password { get; set; } = string.Empty;
|
|
[Column(title: "WorkExperience", width: 50)]
|
|
public int WorkExperience { get; set; }
|
|
[Column(title: "Qualification", width: 50)]
|
|
public int Qualification { get; set; }
|
|
}
|
|
}
|