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