2023-05-04 23:45:15 +04:00
|
|
|
|
using ConfectioneryContracts.Attributes;
|
|
|
|
|
using ConfectioneryDataModels.Models;
|
2023-04-11 00:52:16 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ClientViewModel : IClientModel
|
|
|
|
|
{
|
2023-05-04 23:45:15 +04:00
|
|
|
|
[Column(visible: false)]
|
2023-04-11 00:52:16 +04:00
|
|
|
|
public int Id { get; set; }
|
2023-05-04 23:45:15 +04:00
|
|
|
|
[Column("ФИО клиента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2023-04-11 00:52:16 +04:00
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
2023-05-04 23:45:15 +04:00
|
|
|
|
[Column("Логин (эл. почта)", width: 150)]
|
2023-04-11 00:52:16 +04:00
|
|
|
|
public string Email { get; set; } = string.Empty;
|
2023-05-04 23:45:15 +04:00
|
|
|
|
[Column("Пароль", width: 150)]
|
2023-04-11 00:52:16 +04:00
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|