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 HearingLawyers { get; set; } = new(); [ForeignKey("LawyerId")] public virtual List 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 }; } }