19 lines
434 B
C#
19 lines
434 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|