summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IControleFinanceiroRepository.cs
blob: 3205e4a98e3d48c0ce49090d1e01f651600c1378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 IControleFinanceiroRepository : IGenericRepository<ControleFinanceiroDb>
	{
		void Delete(long id);

		List<ControleFinanceiro> FindByFornecedor(long id);

		ControleFinanceiro FindById(long id);

		ControleFinanceiro Merge(ControleFinanceiro controle);

		ControleFinanceiro SaveOrUpdate(ControleFinanceiro controle);
	}
}