using BlogContracts.BindingModels; using BlogContracts.SearchModels; using BlogContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BlogContracts.BusinessLogicContracts { public interface ICategoryLogic { List? ReadList(CategorySearchModel? model); CategoryViewModel? ReadElement(CategorySearchModel model); bool Create(CategoryBindingModel model); bool Update(CategoryBindingModel model); bool Delete(CategoryBindingModel model); } }