Example #1
0
 public int PayInstallment(int orderid)
 {
     try
     {
         transaction = new TransactionBLL();
         return(transaction.PayInstallment_BLL(orderid));
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 public DataTable GetAllEMIHistory(string username)
 {
     try
     {
         transaction = new TransactionBLL();
         return(transaction.GetAllEMIHistory_BLL(username));
     }
     catch (Exception)
     {
         throw;
     }
 }