diff --git a/EnotaryoPH/EnotaryoPH.Data/Entities/Transaction.cs b/EnotaryoPH/EnotaryoPH.Data/Entities/Transaction.cs index dbdfbd4..141de7c 100644 --- a/EnotaryoPH/EnotaryoPH.Data/Entities/Transaction.cs +++ b/EnotaryoPH/EnotaryoPH.Data/Entities/Transaction.cs @@ -40,5 +40,11 @@ namespace EnotaryoPH.Data.Entities [ForeignKey("PrincipalID")] public User Principal { get; set; } + + [ForeignKey("LawyerID")] + public Lawyer Lawyer { get; set; } + + [ForeignKey("PreferredLawyerID")] + public Lawyer PreferredLawyer { get; set; } } } \ No newline at end of file