summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IDetalheExtratoRepository.cs
blob: 0ac35c823a6d5b77fa289d403d487b224ac66724 (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.Seguros;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Domain.Seguros;
using System;
using System.Collections.Generic;

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

		List<DetalheExtrato> Find(long id);

		DetalheExtrato FindById(long id);

		List<DetalheExtrato> FindByLongId(long? id);

		DetalheExtrato FindByParcelaId(long id);

		DetalheExtrato Merge(DetalheExtrato parcela);

		DetalheExtrato SaveOrUpdate(DetalheExtrato parcela);
	}
}