public JsonResult GetSubCategoryIdByCategorySetupId(int CategorySetupId)
        {
            var subCategoriesLists = subCategoryManager.GetSubCategoryIdByCategorySetupId(CategorySetupId);

            return(Json(subCategoriesLists, JsonRequestBehavior.AllowGet));
        }