コード例 #1
0
 public bool AuditAFTTransactions(int installationNo, DateTime transactionDate, string transactionType, double cashableAmt, double nonCashableAmt, double watAmt, int playerID, bool ecashEnabled, int errorCode, string errorMsg, int transferID)
 {
     try
     {
         using (ExCommsSQLDataAccess DataContext = this.GetDataContext())
         {
             DataContext.esp_AuditAFTTransactions(installationNo, transactionDate, transactionType, cashableAmt, nonCashableAmt, watAmt, playerID, ecashEnabled, errorCode, errorMsg, transferID);
             return(true);
         }
     }
     catch (Exception ex)
     {
         Log.Exception(ex);
         return(false);
     }
 }