summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas
diff options
context:
space:
mode:
authorLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
committerLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
commit1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch)
treee1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas
parent674ca83ba9243a9e95a7568c797668dab6aee26a (diff)
downloadgestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz
gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip
chore: location
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaDb.cs67
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaEmailDb.cs19
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaTelefoneDb.cs25
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CategoriaTarefaDb.cs19
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CredencialDb.cs104
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs37
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ImpostoDb.cs56
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/LogEmailDb.cs105
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/NotaFiscalDb.cs74
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs32
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ReciboDb.cs68
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ResponsavelTarefaDb.cs26
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/StatusDeProspeccaoDb.cs37
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TarefaDb.cs123
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TipoDeTarefaDb.cs37
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TrilhaDb.cs44
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/VinculoRepasseDb.cs38
17 files changed, 0 insertions, 911 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaDb.cs
deleted file mode 100644
index 2f0a9d7..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaDb.cs
+++ /dev/null
@@ -1,67 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class AgendaDb : EntityBase
- {
- public virtual string Bairro
- {
- get;
- set;
- }
-
- public virtual string Cep
- {
- get;
- set;
- }
-
- public virtual string Cidade
- {
- get;
- set;
- }
-
- public virtual string Complemento
- {
- get;
- set;
- }
-
- public virtual string Endereco
- {
- get;
- set;
- }
-
- public virtual string Estado
- {
- get;
- set;
- }
-
- public virtual string Nome
- {
- get;
- set;
- }
-
- public virtual string Numero
- {
- get;
- set;
- }
-
- public virtual string Observacao
- {
- get;
- set;
- }
-
- public AgendaDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaEmailDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaEmailDb.cs
deleted file mode 100644
index 184e2eb..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaEmailDb.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class AgendaEmailDb : EmailBase
- {
- public virtual AgendaDb Agenda
- {
- get;
- set;
- }
-
- public AgendaEmailDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaTelefoneDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaTelefoneDb.cs
deleted file mode 100644
index 0cd687f..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaTelefoneDb.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class AgendaTelefoneDb : TelefoneBase
- {
- public virtual AgendaDb Agenda
- {
- get;
- set;
- }
-
- public virtual string Observacao
- {
- get;
- set;
- }
-
- public AgendaTelefoneDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CategoriaTarefaDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CategoriaTarefaDb.cs
deleted file mode 100644
index ffc907e..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CategoriaTarefaDb.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class CategoriaTarefaDb : EntityBase
- {
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public CategoriaTarefaDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CredencialDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CredencialDb.cs
deleted file mode 100644
index d211925..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CredencialDb.cs
+++ /dev/null
@@ -1,104 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Model.Common;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class CredencialDb : EntityBase
- {
- public virtual string Assinatura
- {
- get;
- set;
- }
-
- public virtual string Cabecalho
- {
- get;
- set;
- }
-
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public virtual string Dominio
- {
- get;
- set;
- }
-
- public virtual string Email
- {
- get;
- set;
- }
-
- public virtual bool Excluido
- {
- get;
- set;
- }
-
- public virtual string Header
- {
- get;
- set;
- }
-
- public virtual long IdEmpresa
- {
- get;
- set;
- }
-
- public virtual long IdUsuario
- {
- get;
- set;
- }
-
- public virtual int Porta
- {
- get;
- set;
- }
-
- public virtual string Replyto
- {
- get;
- set;
- }
-
- public virtual bool Seguro
- {
- get;
- set;
- }
-
- public virtual string Senha
- {
- get;
- set;
- }
-
- public virtual TipoEmail Tipo
- {
- get;
- set;
- }
-
- public virtual string Usuario
- {
- get;
- set;
- }
-
- public CredencialDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs
deleted file mode 100644
index 732fdfc..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class FaseDb : EntityBase
- {
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public virtual DateTime? Expiracao
- {
- get;
- set;
- }
-
- public virtual string Titulo
- {
- get;
- set;
- }
-
- public virtual TrilhaDb Trilha
- {
- get;
- set;
- }
-
- public FaseDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ImpostoDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ImpostoDb.cs
deleted file mode 100644
index cea3290..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ImpostoDb.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Infrastructure.Entities.Seguros;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class ImpostoDb : EntityBase
- {
- public virtual bool Ativo
- {
- get;
- set;
- }
-
- public virtual decimal Desconto
- {
- get;
- set;
- }
-
- public virtual decimal Ir
- {
- get;
- set;
- }
-
- public virtual decimal Iss
- {
- get;
- set;
- }
-
- public virtual decimal Outros
- {
- get;
- set;
- }
-
- public virtual RamoDb Ramo
- {
- get;
- set;
- }
-
- public virtual SeguradoraDb Seguradora
- {
- get;
- set;
- }
-
- public ImpostoDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/LogEmailDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/LogEmailDb.cs
deleted file mode 100644
index 97e7735..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/LogEmailDb.cs
+++ /dev/null
@@ -1,105 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Infrastructure.Entities.Seguros;
-using Gestor.Model.Common;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class LogEmailDb : EntityBase
- {
- public virtual string Anexos
- {
- get;
- set;
- }
-
- public virtual string Assunto
- {
- get;
- set;
- }
-
- public virtual string Cco
- {
- get;
- set;
- }
-
- public virtual string Corpo
- {
- get;
- set;
- }
-
- public virtual CredencialDb Credencial
- {
- get;
- set;
- }
-
- public virtual DateTime Data
- {
- get;
- set;
- }
-
- public virtual string Destinatarios
- {
- get;
- set;
- }
-
- public virtual long EntityId
- {
- get;
- set;
- }
-
- public virtual string Ip
- {
- get;
- set;
- }
-
- public virtual string NomeMaquina
- {
- get;
- set;
- }
-
- public virtual Gestor.Model.Common.Relatorio Relatorio
- {
- get;
- set;
- }
-
- public virtual TipoTela Tela
- {
- get;
- set;
- }
-
- public virtual UsuarioDb Usuario
- {
- get;
- set;
- }
-
- public virtual string UsuarioMaquina
- {
- get;
- set;
- }
-
- public virtual string Versao
- {
- get;
- set;
- }
-
- public LogEmailDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/NotaFiscalDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/NotaFiscalDb.cs
deleted file mode 100644
index 0c5e593..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/NotaFiscalDb.cs
+++ /dev/null
@@ -1,74 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Infrastructure.Entities.Seguros;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class NotaFiscalDb : EntityBase
- {
- public virtual DateTime? Data
- {
- get;
- set;
- }
-
- public virtual EstipulanteDb Estipulante
- {
- get;
- set;
- }
-
- public virtual string Extrato
- {
- get;
- set;
- }
-
- public virtual long? IdExtrato
- {
- get;
- set;
- }
-
- public virtual decimal Ir
- {
- get;
- set;
- }
-
- public virtual decimal Iss
- {
- get;
- set;
- }
-
- public virtual string Obs
- {
- get;
- set;
- }
-
- public virtual SeguradoraDb Seguradora
- {
- get;
- set;
- }
-
- public virtual decimal ValorBruto
- {
- get;
- set;
- }
-
- public virtual decimal ValorLiquido
- {
- get;
- set;
- }
-
- public NotaFiscalDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs
deleted file mode 100644
index eb5a9d2..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Infrastructure.Entities.Seguros;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class OrigemClienteDb : EntityBase
- {
- public virtual ClienteDb Cliente
- {
- get;
- set;
- }
-
- public virtual string Nome
- {
- get;
- set;
- }
-
- public virtual long TipoOrigem
- {
- get;
- set;
- }
-
- public OrigemClienteDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ReciboDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ReciboDb.cs
deleted file mode 100644
index beebff1..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ReciboDb.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Model.Common;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class ReciboDb : EntityBase
- {
- public virtual DateTime? DataRecibo
- {
- get;
- set;
- }
-
- public virtual string DocumentoPagante
- {
- get;
- set;
- }
-
- public virtual string DocumentoRecebedor
- {
- get;
- set;
- }
-
- public virtual TipoPagamento? Pagamento
- {
- get;
- set;
- }
-
- public virtual string Pagante
- {
- get;
- set;
- }
-
- public virtual string Recebedor
- {
- get;
- set;
- }
-
- public virtual string Referente
- {
- get;
- set;
- }
-
- public virtual TipoRecibo? Tipo
- {
- get;
- set;
- }
-
- public virtual decimal Valor
- {
- get;
- set;
- }
-
- public ReciboDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ResponsavelTarefaDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ResponsavelTarefaDb.cs
deleted file mode 100644
index 766eb0a..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ResponsavelTarefaDb.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Infrastructure.Entities.Seguros;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class ResponsavelTarefaDb : EntityBase
- {
- public virtual long IdTarefa
- {
- get;
- set;
- }
-
- public virtual UsuarioDb Usuario
- {
- get;
- set;
- }
-
- public ResponsavelTarefaDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/StatusDeProspeccaoDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/StatusDeProspeccaoDb.cs
deleted file mode 100644
index 70f50d4..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/StatusDeProspeccaoDb.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class StatusDeProspeccaoDb : EntityBase
- {
- public virtual bool Ativo
- {
- get;
- set;
- }
-
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public virtual bool Excluido
- {
- get;
- set;
- }
-
- public virtual string Nome
- {
- get;
- set;
- }
-
- public StatusDeProspeccaoDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TarefaDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TarefaDb.cs
deleted file mode 100644
index 34906e7..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TarefaDb.cs
+++ /dev/null
@@ -1,123 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Infrastructure.Entities.Seguros;
-using Gestor.Model.Common;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class TarefaDb : EntityBase
- {
- public virtual DateTime Agendamento
- {
- get;
- set;
- }
-
- public virtual CategoriaTarefaDb Categoria
- {
- get;
- set;
- }
-
- public virtual string Cliente
- {
- get;
- set;
- }
-
- public virtual DateTime? Conclusao
- {
- get;
- set;
- }
-
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public virtual string DescricaoInterna
- {
- get;
- set;
- }
-
- public virtual TipoTarefa Entidade
- {
- get;
- set;
- }
-
- public virtual FaseDb Fase
- {
- get;
- set;
- }
-
- public virtual long IdCliente
- {
- get;
- set;
- }
-
- public virtual long IdEntidade
- {
- get;
- set;
- }
-
- public virtual string Referencia
- {
- get;
- set;
- }
-
- public virtual bool? Restrito
- {
- get;
- set;
- }
-
- public virtual StatusTarefa Status
- {
- get;
- set;
- }
-
- public virtual TipoDeTarefaDb TipoDeTarefa
- {
- get;
- set;
- }
-
- public virtual string Titulo
- {
- get;
- set;
- }
-
- public virtual TrilhaDb Trilha
- {
- get;
- set;
- }
-
- public virtual UsuarioDb Usuario
- {
- get;
- set;
- }
-
- public virtual UsuarioDb UsuarioCadastro
- {
- get;
- set;
- }
-
- public TarefaDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TipoDeTarefaDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TipoDeTarefaDb.cs
deleted file mode 100644
index f6137ef..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TipoDeTarefaDb.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class TipoDeTarefaDb : EntityBase
- {
- public virtual bool Ativo
- {
- get;
- set;
- }
-
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public virtual bool Excluido
- {
- get;
- set;
- }
-
- public virtual string Nome
- {
- get;
- set;
- }
-
- public TipoDeTarefaDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TrilhaDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TrilhaDb.cs
deleted file mode 100644
index 337dd61..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TrilhaDb.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Model.Common;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class TrilhaDb : EntityBase
- {
- public virtual bool Ativo
- {
- get;
- set;
- }
-
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public virtual int Intervalo
- {
- get;
- set;
- }
-
- public virtual TipoTrilha Tipo
- {
- get;
- set;
- }
-
- public virtual string Titulo
- {
- get;
- set;
- }
-
- public TrilhaDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/VinculoRepasseDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/VinculoRepasseDb.cs
deleted file mode 100644
index 883430e..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/VinculoRepasseDb.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Infrastructure.Entities.Seguros;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Ferramentas
-{
- public class VinculoRepasseDb : EntityBase
- {
- public virtual long IdRepasse
- {
- get;
- set;
- }
-
- public virtual RepasseDb RepasseVinculo
- {
- get;
- set;
- }
-
- public virtual TipoVendedorDb TipoVendedor
- {
- get;
- set;
- }
-
- public virtual TipoVendedorDb TipoVendedorVinculo
- {
- get;
- set;
- }
-
- public VinculoRepasseDb()
- {
- }
- }
-} \ No newline at end of file