public JsonResult Insert([FromBody] FundCatReptExps data)
        {
            var msg = new JMessage()
            {
                Error = false
            };

            try
            {
                var checkExist = _context.FundCatReptExpss.FirstOrDefault(x => x.CatCode.ToLower() == data.CatCode.ToLower());
                if (checkExist != null)
                {
                    msg.Error = true;
                    msg.Title = String.Format(CommonUtil.ResourceValue("FCRE_MSG_CAT_CODE"));//"Đã tồn danh mục quỹ!";
                }
                else
                {
                    data.CreatedBy   = ESEIM.AppContext.UserName;
                    data.CreatedTime = DateTime.Now;
                    if (string.IsNullOrEmpty(data.CatParent))
                    {
                        data.CatParent = "CAT_FUND";
                    }
                    _context.FundCatReptExpss.Add(data);
                    _context.SaveChanges();
                    msg.Title = String.Format(CommonUtil.ResourceValue("FCRE_MSG_ADD_DONE"));//"Thêm danh mục quỹ thành công";
                }
            }
            catch (Exception ex)
            {
                msg.Error = true;
                msg.Title = String.Format(CommonUtil.ResourceValue("FCRE_MSG_ADD_ERROR"));//"Có lỗi xảy ra khi thêm?";
            }
            return(Json(msg));
        }
        public object Update([FromBody] FundCatReptExps data)
        {
            var msg = new JMessage()
            {
                Error = false
            };

            try
            {
                data.UpdatedBy   = ESEIM.AppContext.UserName;
                data.UpdatedTime = DateTime.Now;
                _context.FundCatReptExpss.Update(data);
                _context.SaveChanges();
                msg.Title = String.Format(CommonUtil.ResourceValue("FCRE_MSG_UPDATE_DONE"));//"Cập nhật danh mục quỹ thành công";
            }
            catch (Exception ex)
            {
                msg.Error = true;
                msg.Title = String.Format(CommonUtil.ResourceValue("FCRE_MSG_UPDATE_ERROR"));//"Có lỗi xảy ra khi cập nhật!";
            }
            return(Json(msg));
        }