public SigmaResultType GetSigmaJob(string sigmaJobId)
 {
     SigmaResultType result = new SigmaResultType();
     try
     {
         SigmaJobMgr sigmaJobMgr = new SigmaJobMgr();
         result = sigmaJobMgr.GetSigmaJob(sigmaJobId);
         return result;
     }
     catch (Exception ex)
     {
         // Log Exception
         ExceptionHelper.logException(ex);
         result.IsSuccessful = false;
         result.ErrorMessage = ex.Message;
         return result;
     }
 }