public int OpenOrCloseGamePlaySessionForInstallation(int installationNo, int operationType)
 {
     try
     {
         using (ExCommsSQLDataAccess DataContext = this.GetDataContext())
         {
             return(DataContext.usp_OpenOrCloseGamePlaySessionForInstallation(installationNo, operationType));
         }
     }
     catch (Exception ex)
     {
         Log.Exception(ex);
         return(-1);
     }
 }