2024-04-29 15:36:48 +04:00
|
|
|
|
using UniversityDataModels;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class EmployeeBindingModel : IEmployeeModel
|
|
|
|
|
{
|
|
|
|
|
public string Post { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string? MiddleName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
2024-05-26 19:47:37 +04:00
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
|
2024-04-29 15:36:48 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|