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

25 lines
835 B
C#
Raw Normal View History

using BookShopContracts.BusinessLogicsContracts;
using BookShopDataModels.Models;
2023-05-13 14:30:05 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
2023-05-13 14:30:05 +04:00
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;
2023-05-13 14:30:05 +04:00
[DisplayName("Почта клиента")]
public string Email { get; set; } = string.Empty;
}
}