2023-03-28 16:13:50 +04:00
|
|
|
|
using BeautySaloonDataModels;
|
|
|
|
|
|
|
|
|
|
namespace BeautySaloonContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class EmployeeBindingModel : IEmployeeModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public string Surname { get; set; } = string.Empty;
|
|
|
|
|
public string Patronymic { get; set; } = string.Empty;
|
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
|
|
|
|
public int PositionId { get; set; }
|
2023-05-06 16:30:44 +04:00
|
|
|
|
public string PositionName { get; set; } = string.Empty;
|
2023-03-28 16:13:50 +04:00
|
|
|
|
}
|
|
|
|
|
}
|