21 lines
810 B
C#
21 lines
810 B
C#
using BankDataModels.Models;
|
|
|
|
namespace BankContracts.BindingModels
|
|
{
|
|
public class ClientBindingModel : IClientModel
|
|
{
|
|
public string Snils { get; set; } = string.Empty;
|
|
public string ClientSurname { get; set; } = string.Empty;
|
|
public string ClientName { get; set; } = string.Empty;
|
|
public string ClientPatronymic { get; set; } = string.Empty;
|
|
public string Phone { get; set; } = string.Empty;
|
|
public string? Email { get; set; } = string.Empty;
|
|
public string PasswordHash { get; set; } = string.Empty;
|
|
public int WorkerId { get; set; }
|
|
public Dictionary<int, IProgramModel>
|
|
ClientPrograms { get; set; } = new();
|
|
public Dictionary<int, IDepositModel>
|
|
ClientDeposits { get; set; } = new();
|
|
}
|
|
}
|