示例#1
0
        public ResultDTO AddFunnalPage(RequestFunnalPageDTO obj)
        {
            ResultDTO accInfo = null;

            try
            {
                accInfo = _repository.AddFunnalPage(obj);
            }
            catch (Exception ex)
            {
                Utilities.AppLog.WriteLog("AddFunnalPage", ActionType.Add, ex.Message.ToString(), obj.SessionKey);
                accInfo.StatusCode = Utilities.Common.ConvertErrorCodeToInt(RetCode.ECS9999);
                accInfo.StatusMsg  = ex.Message.ToString();
            }
            return(accInfo);
        }