public JsonResult InsertBrandMonitorCategoryInfo(BrandMonitorCategory brandInfo)
        {
            var userId   = (long)_sessiondictionary[1].Id;
            var userName = (long)_sessiondictionary[2].Id;

            var result = new Result();

            try
            {
                var categoryNameExist = _brandManager.BrandMonitorCategoryNameExist(new BrandMonitorCategory()
                {
                    Name = brandInfo.Name
                });

                if (categoryNameExist == null)
                {
                    brandInfo.AddedBy   = userId;
                    brandInfo.AddedDate = DateTime.Now;
                    brandInfo.Active    = true;
                    result = _brandManager.InsertBrandMonitorCategoryInfo(brandInfo);
                }
                else
                {
                    result.IsSuccess = false;
                    result.Message   = "Current Name Already Exists";
                }
            }
            catch (Exception ex)
            {
            }
            return(Json(result, JsonRequestBehavior.AllowGet));
        }