PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyDatabaseImplement/Models/Lawyer.cs

71 lines
2.1 KiB
C#
Raw Normal View History

using LawCompanyContracts.BindingModels;
using LawCompanyContracts.ViewModels;
using LawCompanyDatabaseImplement.Models;
using LawCompanyDataModels.Models;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
2024-05-01 17:18:02 +04:00
namespace LawFirmDatabaseImplement.Models
2024-05-01 17:18:02 +04:00
{
public class Lawyer : ILawyerModel
2024-05-01 17:18:02 +04:00
{
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
};
2024-05-01 17:18:02 +04:00
}
}