15 lines
469 B
C#
15 lines
469 B
C#
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; }
|
|
}
|
|
}
|