feat: добавил поля в моделях и модели многие ко многим

This commit is contained in:
2025-04-25 09:54:23 +04:00
parent b582d03d45
commit 0923f8dcf7
11 changed files with 121 additions and 4 deletions

View File

@@ -16,4 +16,10 @@ class Client
[ForeignKey("ClerkId")]
public Clerk? Clerk { get; set; }
[ForeignKey("DepositId")]
public List<DepositClient>? Deposits { get; set; }
[ForeignKey("CreditProgramId")]
public List<ClientCreditProgram>? CreditPrograms { get; set; }
}