public void SelectAllExoticInstallmentTable()
        {
            LoanProductManager             loanProductManager = (LoanProductManager)container["LoanProductManager"];
            List <ExoticInstallmentsTable> list = loanProductManager.SelectAllInstallmentsTables();

            Assert.AreEqual(2, list.Count);
            _AssertExoticInstallmentTable(list[0], "Exotic", 1);
            _AssertExoticInstallmentTable(list[1], "Exotic2", 2);
        }
Example #2
0
 public List <ExoticInstallmentsTable> FindAllExoticProducts()
 {
     return(_productManager.SelectAllInstallmentsTables());
 }