//public SigmaResultType RemoveCWA(TypeCWA objCWA)
        //{
        //    SigmaResultType result = new SigmaResultType();
        //    try
        //    {
        //        CWAMgr cWAMgr = new CWAMgr();
        //        result = cWAMgr.RemoveCWA(objCWA);
        //        return result;
        //    }
        //    catch (Exception ex)
        //    {
        //        // Log Exception
        //        ExceptionHelper.logException(ex);
        //        result.IsSuccessful = false;
        //        result.ErrorMessage = ex.Message;
        //        return result;
        //    }
        //}
        public SigmaResultType MultiCWA(List<TypeCWA> listObj)
        {
            SigmaResultType result = new SigmaResultType();

            try
            {
                CWAMgr cWAMgr = new CWAMgr();
                result = cWAMgr.MultiCWA(listObj);
                return result;
            }
            catch (Exception ex)
            {
                // Log Exception
                ExceptionHelper.logException(ex);
                result.IsSuccessful = false;
                result.ErrorMessage = ex.Message;
                return result;
            }
        }