public async Task <JsonResult> NameIsUnique(string name)
        {
            bool categoryNotExists = await _categoryManager.CategoryNotExists(name);

            return(Json(categoryNotExists));
        }