//UpdateCustomerIds public void RejectHousingLoan(HousingLoan u, int CreditScore) { HousingLoan cust = _housingLoans.Find(temp => temp.CreditScore == u.CreditScore); if (CreditScore <= 650) { cust.CreditScore = u.CreditScore; } }
//Add HousingLoan public void Add(HousingLoan n) { HousingLoan cus = _housingLoans.Find(temp => temp.CustomerId == n.CustomerId); if (cus != null) { _housingLoans.Add(n); ListOfHousingLoan(); } }
public void RejectHousingLoan(HousingLoan housingLoan) { throw new NotImplementedException(); }