2023-05-13 14:30:05 +04:00
|
|
|
|
using BookShopContracts.BusinessLogicsContracts;
|
|
|
|
|
using BookShopDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2023-05-12 12:08:11 +04:00
|
|
|
|
|
|
|
|
|
namespace BookShopContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ClientBindingModel : IClientModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string ClientSurname { get; set; } = string.Empty;
|
|
|
|
|
public string ClientName { get; set; } = string.Empty;
|
|
|
|
|
public string ClientPatronymic { get; set; } = string.Empty;
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|