2024-05-16 17:00:28 +04:00
|
|
|
|
using PlumbingRepairContracts.Attributes;
|
|
|
|
|
using PlumbingRepairDataModels.Models;
|
2024-04-12 19:30:31 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ClientViewModel : IClientModel
|
|
|
|
|
{
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id { get; set; }
|
2024-04-12 19:30:31 +04:00
|
|
|
|
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(title: "ФИО клиента", width: 150)]
|
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
2024-04-12 19:30:31 +04:00
|
|
|
|
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(title: "Логин (эл. почта)", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
2024-04-12 19:30:31 +04:00
|
|
|
|
|
2024-05-16 17:00:28 +04:00
|
|
|
|
[Column(title: "Пароль", width: 150)]
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2024-04-12 19:30:31 +04:00
|
|
|
|
}
|
|
|
|
|
}
|