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 --- .../IDocumentoRepository.cs | 68 ---------------------- 1 file changed, 68 deletions(-) delete mode 100644 Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IDocumentoRepository.cs (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IDocumentoRepository.cs') diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IDocumentoRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IDocumentoRepository.cs deleted file mode 100644 index 277a960..0000000 --- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IDocumentoRepository.cs +++ /dev/null @@ -1,68 +0,0 @@ -using Gestor.Infrastructure.Entities.Seguros; -using Gestor.Infrastructure.Repository.Generic; -using Gestor.Model.Common; -using Gestor.Model.Domain.Relatorios; -using Gestor.Model.Domain.Relatorios.Fechamento; -using Gestor.Model.Domain.Seguros; -using Gestor.Model.License; -using System; -using System.Collections.Generic; -using System.Threading.Tasks; - -namespace Gestor.Infrastructure.Repository.Interface -{ - public interface IDocumentoRepository : IGenericRepository - { - bool AtualizarNumero(long id, string numero, string endosso, int tipoDocumento); - - List Auditoria(Filtros filtro); - - Task> BuscaDocumentosPorVigencia(Filtros filtro, bool buscaAssinaturas = false, bool painelBi = false); - - List BuscarDocumentoPorEstipulante(long id); - - List BuscarDocumentoPorStatus(long id); - - string BuscarLogAntigo(long id, string conn); - - List BuscarPlanilhaCompletaProspeccao(List ids); - - int Cotacoes(Filtros filtro); - - void Delete(long id); - - Task> Fechamento(Filtros filtro); - - List FindApolice(string pesquisa, FiltroStatusDocumento status, List vendedorVinculado, string campo, long idempresa = 0L, bool vendedorembranco = false, bool tipobusca = false); - - List FindApoliceByCustomer(long idCliente, FiltroStatusDocumento status, List vendedorVinculado, List licencas, bool endosso = false, bool acessoAgger = false, bool vendedorembranco = false); - - List FindByControle(long id); - - Documento FindById(long id, bool itens = false, bool sinistrosPorControle = false); - - Documento FindById(long id, List vendedorVinculado); - - List FindByIds(List ids); - - List FindByLicenciamento(Filtros filtro); - - List FindByParcelaIds(List ids); - - List FindByPlaca(Filtros filtro); - - List FindByVigenciaFinal(Filtros filtro, List licencas, bool somarPremios); - - Task> FindEndossoByVigencia(Filtros filtro, bool buscarAssinatura = false); - - List FindPendenciasByVigencia(Filtros filtro); - - Documento Merge(Documento documento); - - void SalvarAssistencia(string id, long idcontrole); - - Documento SaveOrUpdate(Documento documento); - - void TrocarCliente(Controle controle, Cliente cliente); - } -} \ No newline at end of file -- cgit v1.2.3