Exemple #1
0
 public int StartGameCapSession(int installationNo, string slot, string stand, string reservedCardNo, string reservedForCardNo)
 {
     try
     {
         using (ExCommsSQLDataAccess DataContext = this.GetDataContext())
         {
             return(DataContext.StartGameCappingSession(installationNo, slot, stand, reservedCardNo, reservedForCardNo));
         }
     }
     catch (Exception ex)
     {
         Log.Exception(ex);
         return(-1);
     }
 }