2024-04-05 23:37:18 +04:00
|
|
|
|
using AutomobilePlantContracts.BindingModels;
|
|
|
|
|
using AutomobilePlantContracts.ViewModels;
|
|
|
|
|
using AutomobilePlantDataModels.Models;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2024-05-16 00:34:01 +04:00
|
|
|
|
using System.Runtime.Serialization;
|
2024-04-05 23:37:18 +04:00
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantDatabaseImplement.Models
|
|
|
|
|
{
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[DataContract]
|
|
|
|
|
public class Client : IClientModel
|
|
|
|
|
{
|
|
|
|
|
[DataMember]
|
|
|
|
|
public int Id { get; private set; }
|
2024-04-05 23:37:18 +04:00
|
|
|
|
|
|
|
|
|
[Required]
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[DataMember]
|
2024-04-05 23:37:18 +04:00
|
|
|
|
public string ClientFIO { get; private set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[Required]
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[DataMember]
|
|
|
|
|
public string Email { get; private set; } = string.Empty;
|
2024-04-05 23:37:18 +04:00
|
|
|
|
|
|
|
|
|
[Required]
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[DataMember]
|
|
|
|
|
public string Password { get; private set; } = string.Empty;
|
2024-04-05 23:37:18 +04:00
|
|
|
|
|
|
|
|
|
[ForeignKey("ClientId")]
|
|
|
|
|
public virtual List<Order> Orders { get; set; } = new();
|
|
|
|
|
|
2024-05-05 00:23:11 +04:00
|
|
|
|
[ForeignKey("ClientId")]
|
|
|
|
|
public virtual List<MessageInfo> Messages { get; set; } = new();
|
|
|
|
|
|
2024-04-05 23:37:18 +04:00
|
|
|
|
public static Client? Create(ClientBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return new()
|
|
|
|
|
{
|
|
|
|
|
Id = model.Id,
|
|
|
|
|
ClientFIO = model.ClientFIO,
|
|
|
|
|
Email = model.Email,
|
|
|
|
|
Password = model.Password
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Update(ClientBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
ClientFIO = model.ClientFIO;
|
|
|
|
|
Email = model.Email;
|
|
|
|
|
Password = model.Password;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ClientViewModel GetViewModel => new()
|
|
|
|
|
{
|
|
|
|
|
Id = Id,
|
|
|
|
|
ClientFIO = ClientFIO,
|
|
|
|
|
Email = Email,
|
|
|
|
|
Password = Password,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|