diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
| commit | 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch) | |
| tree | e1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IClienteRepository.cs | |
| parent | 674ca83ba9243a9e95a7568c797668dab6aee26a (diff) | |
| download | gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip | |
chore: location
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IClienteRepository.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IClienteRepository.cs | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IClienteRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IClienteRepository.cs deleted file mode 100644 index e65df00..0000000 --- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IClienteRepository.cs +++ /dev/null @@ -1,72 +0,0 @@ -using Gestor.Infrastructure.Entities.Seguros;
-using Gestor.Infrastructure.Repository.Generic;
-using Gestor.Model.Common;
-using Gestor.Model.Domain.Ferramentas;
-using Gestor.Model.Domain.Relatorios;
-using Gestor.Model.Domain.Relatorios.Classificacao;
-using Gestor.Model.Domain.Relatorios.ClientesAtivosInativos;
-using Gestor.Model.Domain.Relatorios.Dashboard;
-using Gestor.Model.Domain.Seguros;
-using System;
-using System.Collections.Generic;
-using System.Threading.Tasks;
-
-namespace Gestor.Infrastructure.Repository.Interface
-{
- public interface IClienteRepository : IGenericRepository<ClienteDb>
- {
- void AddCentralSegurado(long id, bool update);
-
- Task<IEnumerable<ClientesAtivosInativos>> BuscaClientes(bool completo, long idempresa);
-
- Task<IEnumerable<ClientesAtivosInativos>> BuscaClientesVinculo(bool completo, List<VendedorUsuario> vinculo, long idempresa);
-
- DateTime? BuscaNascimeto(long id);
-
- Task<List<Prospectar>> BuscaProspeccoes(Filtros filtro, long idEmpresa = 0L);
-
- List<ClientesAtivosInativos> BuscarAniversariantes(Filtros filtro, long idempresa = 0L);
-
- List<ClientesAtivosInativos> BuscarAniversariantesVinculo(Filtros filtro, List<VendedorUsuario> vinculo, long idempresa = 0L);
-
- Task<List<Classificacao>> BuscarClassificacoes(long id);
-
- string BuscarLogAntigo(long id, string connection);
-
- List<OrigemCliente> BuscarOrigem(long id);
-
- List<ClientesAtivosInativos> BuscarVencimentoCnh(Filtros filtro, long idempresa = 0L);
-
- void Delete(long id);
-
- void DeleteOrigem(long id);
-
- List<Cliente> Find(string filter, long idempresa = 0L, bool acessoAgger = false, bool assintatura = false);
-
- List<ClientesAtivosInativos> FindAllClientes(bool completo, long idempresa = 0L);
-
- Cliente FindById(long id);
-
- List<Cliente> FindByName(string filter, long idempresa = 0L, bool acessoAgger = false, bool assintatura = false, bool somenteNome = false);
-
- List<Cliente> FindClienteDocumento(string documento);
-
- List<Cliente> FindClienteVinculo(string filter, List<long> vinculos, long idempresa = 0L, bool acessoAgger = false, bool assinatura = false, TipoFiltroCliente tipoFiltroCliente = 2);
-
- List<Cliente> FindObsCliente(string obsCliente, long idempresa = 0L);
-
- List<Cliente> FindPastaCliente(string pastaCliente, bool busca = false, long idempresa = 0L);
-
- List<Cliente> FindVinculo(string filter, long id);
-
- Cliente Merge(Cliente cliente);
-
- OrigemCliente Merge(OrigemCliente origem);
-
- Cliente SaveOrUpdate(Cliente cliente);
-
- OrigemCliente SaveOrUpdate(OrigemCliente origem);
-
- List<OrigemCliente> Sincronize(List<OrigemCliente> origens, long id);
- }
-}
\ No newline at end of file |