public bool InsertAFTTransactions(int instalaltionNo, int playerID, int collectionNo, double cashableAmt, double noncashableAmt, double wATAmt, DateTime transactionDate, string transactionType, int transferID, string accountType, bool transactionStatus)
 {
     try
     {
         using (ExCommsSQLDataAccess DataContext = this.GetDataContext())
         {
             DataContext.esp_InsertAFTTransactions(instalaltionNo, playerID, collectionNo, cashableAmt, noncashableAmt, wATAmt, transactionDate, transactionType, transferID, accountType, transactionStatus);
             return(true);
         }
     }
     catch (Exception ex)
     {
         Log.Exception(ex);
         return(false);
     }
 }