2024-06-21 21:49:23 +04:00
|
|
|
|
using ShipyardContracts.Attributes;
|
|
|
|
|
using ShipyardDataModels;
|
2024-06-02 17:42:31 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ShipyardContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ClientViewModel : IClientModel
|
|
|
|
|
{
|
2024-06-21 21:49:23 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[Column(title: "ФИО клиента", width: 150)]
|
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
|
|
|
|
[Column(title: "Email клиента", gridViewAutoSize: GridViewAutoSize.Fill,
|
|
|
|
|
isUseAutoSize: true)]
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
[Column(title: "Пароль", width: 150)]
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
}
|
2024-06-02 17:42:31 +04:00
|
|
|
|
}
|