blob: 9350ddfdce25eac3e7dcf3d5ca3eb7b4cd81a66d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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<CategoriaTarefaDb>
{
void Delete(long id);
CategoriaTarefa FindById(long id);
CategoriaTarefa Merge(CategoriaTarefa categoriaTarefa);
CategoriaTarefa SaveOrUpdate(CategoriaTarefa categoriaTarefa);
}
}
|