summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ISaldoRepository.cs
blob: d8b9200967897e34f6c04f8b0b5cba66e9fb5be1 (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
26
27
using Gestor.Infrastructure.Entities.Financeiro;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Domain.Financeiro;
using System;
using System.Collections.Generic;

namespace Gestor.Infrastructure.Repository.Interface
{
	public interface ISaldoRepository : IGenericRepository<SaldoDb>
	{
		Saldo BuscarAberto(long id);

		List<Saldo> BuscarPorConta(long id);

		Saldo BuscarPorData(DateTime inicio, long id);

		Saldo BuscarPorMenorData(long id);

		void Delete(long id);

		Saldo FindById(long id);

		Saldo Merge(Saldo saldo);

		Saldo SaveOrUpdate(Saldo saldo);
	}
}