summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IParametrosRelatorioRepository.cs
blob: 555ac562782386f7695bf7a7858085610639d946 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Gestor.Infrastructure.Entities.Relatorios;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Common;
using Gestor.Model.Domain.Relatorios;
using System;
using System.Collections.Generic;

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

		List<ParametrosRelatorio> Find(long id, Relatorio relatorio);

		ParametrosRelatorio Merge(ParametrosRelatorio parametrosRelatorio);

		ParametrosRelatorio SaveOrUpdate(ParametrosRelatorio parametrosRelatorio);
	}
}