Example #1
0
        public void LinkPaymentToInvestor(int userID, int loanTransactionID, int loanID, int customerID, decimal amount, DateTime transactionDate)
        {
            LinkRepaymentToInvestor stra = new LinkRepaymentToInvestor(loanID, loanTransactionID, amount, transactionDate, userID);

            stra.Execute();
        }
Example #2
0
        public void TestLinkLoanRepaymentToInvestor()
        {
            var linkOfferToInvestor = new LinkRepaymentToInvestor(1062, 1845, 32, DateTime.UtcNow, 1);

            linkOfferToInvestor.Execute();
        }