PIbd-21_Raspaev_N.I._FoodOr.../FoodOrders/FoodOrdersDatabaseImplement/Models/Client.cs

62 lines
1.7 KiB
C#
Raw Normal View History

2023-03-25 18:48:21 +04:00
using FoodOrdersContracts.BindingModels;
using FoodOrdersContracts.ViewModels;
using FoodOrdersDataModels.Models;
using System.ComponentModel.DataAnnotations;
2023-03-25 21:14:39 +04:00
using System.ComponentModel.DataAnnotations.Schema;
2023-03-25 18:48:21 +04:00
using System.Reflection;
namespace FoodOrdersDatabaseImplement.Models
{
public class Client : IClientModel
{
public int Id { get; set; }
[Required]
public string ClientFIO { get; set; } = string.Empty;
[Required]
public string Email { get; set; } = string.Empty;
[Required]
public string Password { get; set; } = string.Empty;
2023-03-25 21:14:39 +04:00
[ForeignKey("ClientId")]
public virtual List<Order> Orders { get; set; } = new();
2023-03-25 18:48:21 +04:00
public static Client? Create(ClientBindingModel? model)
{
if (model == null)
{
return null;
}
return new Client()
{
Id = model.Id,
ClientFIO = model.ClientFIO,
Email = model.Email,
Password = model.Password
};
}
//изменённые данные из бизнес-логики передаём в поля Component
public void Update(ClientBindingModel? model)
{
if (model == null)
{
return;
}
ClientFIO = model.ClientFIO;
Password = model.Password;
Email = model.Email;
}
//получение ComponentViewModel из Component
public ClientViewModel GetViewModel => new()
{
Id = Id,
ClientFIO = ClientFIO,
Email = Email,
Password = Password
};
}
}