Ejemplo n.º 1
0
        public bool EditCategory(Guid categoryId, string newCategoryName)
        {
            Category category = _categoryDAL.GetCategoryById(categoryId);

            if (category != null)
            {
                category.CategoryName = newCategoryName;
                _categoryDAL.EditEntity(category);
            }
            return(true);
        }