using Gestor.Infrastructure.Entities.Ferramentas; using Gestor.Infrastructure.Repository.Generic; using Gestor.Model.Domain.Ferramentas; using System; namespace Gestor.Infrastructure.Repository.Interface { public interface ICategoriaTarefaRepository : IGenericRepository { void Delete(long id); CategoriaTarefa FindById(long id); CategoriaTarefa Merge(CategoriaTarefa categoriaTarefa); CategoriaTarefa SaveOrUpdate(CategoriaTarefa categoriaTarefa); } }