PIbd-23_Abazov_A.A._Constru.../ConstructionCompany/ConstructionCompanyContracts/BindingModels/EmployeeBindingModel.cs

19 lines
434 B
C#
Raw Normal View History

using ConstructionCompanyDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConstructionCompanyContracts.BindingModels
{
public class EmployeeBindingModel : IEmployeeModel
{
public string EmployeeName { get; set; } = string.Empty;
public int PositionID { get; set; }
public int Id {get; set; }
}
}