2024-04-28 12:53:39 +04:00
|
|
|
|
using System;
|
2024-03-25 15:50:30 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-04-28 12:53:39 +04:00
|
|
|
|
namespace BankContracts.SearchModels.Client
|
2024-03-25 15:50:30 +04:00
|
|
|
|
{
|
2024-04-28 12:53:39 +04:00
|
|
|
|
// Для поиска сущности "Клиент"
|
|
|
|
|
public class ClientSearchModel
|
2024-03-25 15:50:30 +04:00
|
|
|
|
{
|
2024-04-28 20:52:53 +04:00
|
|
|
|
public int? Id { get; set; }
|
2024-03-25 15:50:30 +04:00
|
|
|
|
|
2024-04-28 20:52:53 +04:00
|
|
|
|
public string? Name { get; set; } = string.Empty;
|
2024-03-25 15:50:30 +04:00
|
|
|
|
|
2024-04-28 20:52:53 +04:00
|
|
|
|
public string? Surname { get; set; } = string.Empty;
|
2024-03-25 15:50:30 +04:00
|
|
|
|
|
2024-04-28 20:52:53 +04:00
|
|
|
|
public string? Patronymic { get; set; } = string.Empty;
|
2024-03-25 15:50:30 +04:00
|
|
|
|
|
2024-04-28 20:52:53 +04:00
|
|
|
|
public string? Email { get; set; } = string.Empty;
|
2024-03-25 15:50:30 +04:00
|
|
|
|
|
2024-04-28 20:52:53 +04:00
|
|
|
|
public string? Password { get; set; } = string.Empty;
|
2024-03-25 15:50:30 +04:00
|
|
|
|
|
2024-04-28 20:52:53 +04:00
|
|
|
|
public string? MobilePhone { get; set; } = string.Empty;
|
2024-03-25 15:50:30 +04:00
|
|
|
|
}
|
|
|
|
|
}
|