From 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:38:18 -0300 Subject: chore: location --- .../IParcelaRepository.cs | 67 ---------------------- 1 file changed, 67 deletions(-) delete mode 100644 Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IParcelaRepository.cs (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IParcelaRepository.cs') diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IParcelaRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IParcelaRepository.cs deleted file mode 100644 index 46850f7..0000000 --- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IParcelaRepository.cs +++ /dev/null @@ -1,67 +0,0 @@ -using Gestor.Infrastructure.Entities.Seguros; -using Gestor.Infrastructure.Repository.Generic; -using Gestor.Model.Domain.Aggilizador; -using Gestor.Model.Domain.Relatorios; -using Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao; -using Gestor.Model.Domain.Seguros; -using System; -using System.Collections.Generic; -using System.Threading.Tasks; - -namespace Gestor.Infrastructure.Repository.Interface -{ - public interface IParcelaRepository : IGenericRepository - { - Task> BuscaDocumentosPorVigencia(Filtros filtro, bool buscaAssinaturas = false, bool painelBi = false); - - Documento BuscarApolice(long id); - - string BuscarLogAntigo(long id, string conn); - - ParcelaPendente BuscarPendencia(long id); - - void Delete(long id); - - void DeleteRange(long id); - - bool ExcluirVinculoParcelaPendenteDocExcluido(Documento doc); - - Task> FaturaPendente(Filtros filtro); - - List FindByDocumentId(long id); - - List FindByDocumentId(List ids); - - List FindByDocumentIds(string ids, List documentos); - - List FindByDocumento(Documento documento); - - Parcela FindById(long id); - - List FindByPagamento(Filtros filtro, bool reciboPagamento, bool segundaViaReciboPagamento, bool datacontrole); - - List FindByPendente(Filtros filtro, bool pendente, bool somenteAtivos); - - Task> FindByRecebimento(Filtros filtro); - - List FindByVencimento(Filtros filtro); - - List FindByVigencia(Filtros filtro); - - List FindDocumentId(List ids); - - List FindNumFatura(string numero); - - Parcela Merge(Parcela parcela); - - List PrevisaoPagamentoComissao(Filtros filtro); - - Parcela SaveOrUpdate(Parcela parcela); - - int[] SincronizarPendencia(DateTime date, List ids = null); - - bool Update(List detalhes, bool desabilitaAproximacao); - - List UpdateRange(List parcelas); - } -} \ No newline at end of file -- cgit v1.2.3