Example #1
0
 public Assets(Borrower borrower) : base()
 {
     _borrower = borrower;
 }
Example #2
0
 public Liabilities(Borrower borrower) : base()
 {
     _borrower = borrower;
 }
Example #3
0
 /// <summary>
 /// Creates a new instance of a credit scores collection for the specified borrower.
 /// </summary>
 /// <param name="borrower"></param>
 public CreditScores(Borrower borrower) : base()
 {
     _borrower = borrower;
 }