PIbd-23_Abazov_A.A._Constru.../ConstructionCompany/ConstructionCompanyContracts/ViewModels/EmployeeOrderViewModel.cs

21 lines
639 B
C#
Raw Permalink Normal View History

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 EmployeeOrderViewModel : IEmployeeOrderModel
{
public int EmployeeId { get; set; }
[DisplayName("ФИО сотрудника")]
public string EmployeeName { get; set; } = string.Empty;
public int OrderId { get; set; }
[DisplayName("Адресс заказа")]
public string OrderAdress { get; set; } = string.Empty;
}
}