PIbd-23_Sergunov_M.A._SUBD/BookShop/BookShopContracts/ViewModels/ClientViewModel.cs

25 lines
835 B
C#

using BookShopContracts.BusinessLogicsContracts;
using BookShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BookShopContracts.ViewModels
{
public class ClientViewModel: IClientModel
{
public int Id { get; set; }
[DisplayName("Фамилия клиента")]
public string ClientSurname { get; set; } = string.Empty;
[DisplayName("Имя клиента")]
public string ClientName { get; set; } = string.Empty;
[DisplayName("Отчество клиента")]
public string ClientPatronymic { get; set; } = string.Empty;
[DisplayName("Почта клиента")]
public string Email { get; set; } = string.Empty;
}
}