2024-04-28 20:20:37 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-04-28 20:43:33 +04:00
|
|
|
|
using BankDataModels;
|
|
|
|
|
using System.ComponentModel;
|
2024-04-28 20:20:37 +04:00
|
|
|
|
|
|
|
|
|
namespace BankContracts.ViewModels
|
|
|
|
|
{
|
2024-04-28 20:43:33 +04:00
|
|
|
|
public class EmployeeViewModel : IEmployeeModel
|
2024-04-28 20:20:37 +04:00
|
|
|
|
{
|
2024-04-28 20:43:33 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[DisplayName("Фамилия")]
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Имя")]
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Отчество")]
|
|
|
|
|
public string? MiddleName { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Номер телефона")]
|
|
|
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Пароль")]
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Должность")]
|
|
|
|
|
public string Post { get; set; } = string.Empty;
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
2024-04-28 20:20:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|