public JsonResult Add(UserCategoryViewModel model)
        {
            if (ModelState.IsValid)
            {
                var EntityMapped = Mapper.Map <UserCategory>(model);
                _UserCategoryService.Add(EntityMapped);
                return(Json(new { data = model, success = true }, JsonRequestBehavior.AllowGet));
            }
            var errors = ModelState.GetDistinctModelErrors();

            return(Json(new { data = model, success = false, ErrorsList = errors }, JsonRequestBehavior.AllowGet));
        }