public SigmaResultType GetCWP(string cwpId)
 {
     SigmaResultType result = new SigmaResultType();
     try
     {
         CWAMgr CWAMgr = new CWAMgr();
         result = CWAMgr.GetCWP(cwpId);
         return result;
     }
     catch (Exception ex)
     {
         // Log Exception
         ExceptionHelper.logException(ex);
         result.IsSuccessful = false;
         result.ErrorMessage = ex.Message;
         return result;
     }
 }