summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IParametrosTotalizacaoRepository.cs
blob: e1f0bbce3fb48266e0f7bed0bbc07cce7141571e (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 IParametrosTotalizacaoRepository : IGenericRepository<ParametrosTotalizacaoDb>
	{
		void Delete(long id);

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

		ParametrosTotalizacao Merge(ParametrosTotalizacao parametrosTotalizacao);

		ParametrosTotalizacao SaveOrUpdate(ParametrosTotalizacao parametrosTotalizacao);
	}
}