PIbd-22_Gerimovich.I.M._Fur.../FurnitureAssembly/FurnitureAssemblyDatabaseImplement/Models/Client.cs

68 lines
1.8 KiB
C#
Raw Normal View History

2024-05-08 11:24:46 +04:00
using FurnitureAssemblyContracts.BindingModels;
using FurnitureAssemblyContracts.ViewModels;
using FurnitureAssemblyDataModels.Models;
using System;
using System.Collections.Generic;
2024-05-13 23:32:57 +04:00
using System.ComponentModel.DataAnnotations.Schema;
2024-05-08 11:24:46 +04:00
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyDatabaseImplement.Models
{
public class Client : IClientModel
{
public int Id { get; private set; }
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
[Required]
public string ClientFIO { get; private set; } = string.Empty;
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
[Required]
public string Email { get; private set; } = string.Empty;
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
[Required]
public string Password { get; private set; } = string.Empty;
// Для реализации связи многие-ко-многим с заказами (клиенты могу сделать одинаковый заказ)
2024-05-13 23:32:57 +04:00
[ForeignKey("ClientId")]
public virtual List<Order> Orders { get; set; } = new();
2024-05-08 11:24:46 +04:00
public static Client? Create(ClientBindingModel model)
{
if (model == null)
{
return null;
}
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
return new Client()
{
Id = model.Id,
ClientFIO = model.ClientFIO,
Email = model.Email,
Password = model.Password
};
}
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
public void Update(ClientBindingModel model)
{
if (model == null)
{
return;
}
ClientFIO = model.ClientFIO;
Email = model.Email;
Password = model.Password;
}
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
public ClientViewModel GetViewModel => new()
{
Id = Id,
ClientFIO = ClientFIO,
Email = Email,
Password = Password
};
}
}