SUBD/Sushi/SushiContracts/ViewModels/EmployeeViewModel.cs

17 lines
496 B
C#

using SushiDataModels;
using System.ComponentModel;
namespace SushiContracts.ViewModels
{
public class EmployeeViewModel : IEmployeeModel
{
public int Id { get; set; }
[DisplayName("Имя")]
public string EmployeeName { get; set; } = string.Empty;
[DisplayName("Должность")]
public string EmployeePosition { get; set; } = string.Empty;
[DisplayName("Телефон")]
public long EmployeePhone { get; set; }
}
}