23 lines
593 B
C#
23 lines
593 B
C#
|
using ConstructionCompanyDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ConstructionCompanyContracts.ViewModels
|
|||
|
{
|
|||
|
public class EmployeeViewModel : IEmployeeModel
|
|||
|
{
|
|||
|
[DisplayName("ФИО")]
|
|||
|
public string EmployeeName {get; set;} = string.Empty;
|
|||
|
|
|||
|
public int PositionID {get; set;}
|
|||
|
[DisplayName("Должность")]
|
|||
|
public string PositionName { get; set;} = string.Empty;
|
|||
|
|
|||
|
public int Id { get; set;}
|
|||
|
}
|
|||
|
}
|