2023-04-01 11:48:34 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IСlientModel : IId
|
|
|
|
|
{
|
2023-04-01 11:56:51 +04:00
|
|
|
|
string Password { get; }
|
2023-04-01 11:48:34 +04:00
|
|
|
|
|
2023-04-01 11:56:51 +04:00
|
|
|
|
string Name { get; }
|
2023-04-01 11:48:34 +04:00
|
|
|
|
|
2023-04-01 11:56:51 +04:00
|
|
|
|
string Surname { get; }
|
2023-04-01 11:48:34 +04:00
|
|
|
|
|
2023-04-01 11:56:51 +04:00
|
|
|
|
string Patronymic { get; }
|
2023-04-01 11:48:34 +04:00
|
|
|
|
|
2023-04-01 11:56:51 +04:00
|
|
|
|
string Email { get; }
|
|
|
|
|
|
|
|
|
|
string Telephone { get; }
|
2023-04-01 11:48:34 +04:00
|
|
|
|
}
|
|
|
|
|
}
|