2023-04-01 08:24:54 +04:00
|
|
|
|
using BankYouBankruptDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptContracts.BindingModels
|
|
|
|
|
{
|
2023-04-01 15:33:39 +04:00
|
|
|
|
public class ClientBindingModel : IClientModel
|
2023-04-01 08:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Surname { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Patronymic { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Telephone { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|