Exemplo n.º 1
0
 public bool IsSatisfiedBy(LoanApplication loanApplication)
 {
     return(!debtorRegistry.IsRegisteredDebtor(loanApplication.Customer));
 }
Exemplo n.º 2
0
        public bool IsSatisfiedBy(LoanApplication loanApplication)
        {
            var lastInstallmentDate = loanApplication.Loan.LastInstallmentsDate();

            return(loanApplication.Customer.AgeInYearsAt(lastInstallmentDate) < 65.Years());
        }
Exemplo n.º 3
0
 public bool IsSatisfiedBy(LoanApplication loanApplication)
 {
     return(loanApplication.Loan.MonthlyInstallment()
            < loanApplication.Customer.MonthlyIncome * 15.Percent());
 }
Exemplo n.º 4
0
 public bool IsSatisfiedBy(LoanApplication loanApplication)
 {
     return(loanApplication.Loan.LoanAmount < loanApplication.Property.Value);
 }