PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFirmDatabaseImplement/Models/Lawyer.cs
2024-04-27 21:24:12 +04:00

71 lines
1.6 KiB
C#

using LawFimDataModels.Models;
using LawFirmContracts.BindingModels;
using LawFirmContracts.ViewModels;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace LawFirmDatabaseImplement.Models
{
public class Lawyer : ILawyerModel
{
public int Id { get; private set; }
[Required]
public string FIO { get; private set; } = string.Empty;
[Required]
public string Email { get; private set; } = string.Empty;
[Required]
public string Phone { get; private set; } = string.Empty;
[ForeignKey("LawyerId")]
public virtual List<HearingLawyer> HearingLawyers { get; set; } = new();
[ForeignKey("LawyerId")]
public virtual List<ConsultationLawyer> LawyerConsultations { get; set; } = new();
public int GuarantorId { get; set; }
public static Lawyer? Create(LawyerBindingModel? model)
{
if (model == null)
{
return null;
}
return new Lawyer()
{
Id = model.Id,
FIO = model.FIO,
Email = model.Email,
Phone = model.Phone,
GuarantorId = model.GuarantorId,
};
}
public static Lawyer Create(LawyerViewModel model)
{
return new Lawyer
{
Id = model.Id,
FIO = model.FIO,
Email = model.Email,
Phone = model.Phone,
GuarantorId = model.GuarantorId,
};
}
public void Update(LawyerBindingModel? model)
{
if (model == null)
{
return;
}
FIO = model.FIO;
Email = model.Email;
Phone = model.Phone;
}
public LawyerViewModel GetViewModel => new()
{
Id = Id,
FIO = FIO,
Email = Email,
Phone = Phone,
GuarantorId = GuarantorId
};
}
}