summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IRegistroAcaoRepository.cs
blob: 8857ec32451de4812b5fa0a5a7524c4f3beb309f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using Gestor.Infrastructure.Entities.Common;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Common;
using Gestor.Model.Domain.Common;
using Gestor.Model.Domain.Relatorios;
using System;
using System.Collections.Generic;

namespace Gestor.Infrastructure.Repository.Interface
{
	public interface IRegistroAcaoRepository : IGenericRepository<RegistroAcaoDb>
	{
		void Delete(long id);

		List<RegistroAcao> Find(Filtros filtros);

		List<RegistroAcao> FindByEntityId(long id, TipoTela tela);

		RegistroAcao FindById(long id);

		List<RegistroAcao> FindOld(Filtros filtros, string connection);

		RegistroAcao SaveOrUpdate(RegistroAcao log);
	}
}