summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro
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.Financeiro
parent674ca83ba9243a9e95a7568c797668dab6aee26a (diff)
downloadgestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz
gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip
chore: location
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/BancosContasDb.cs56
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/CentroDb.cs31
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/ControleFinanceiroDb.cs43
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/FornecedorDb.cs110
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/LancamentoDb.cs116
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanoDb.cs25
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanosDb.cs45
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/SaldoDb.cs49
8 files changed, 0 insertions, 475 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/BancosContasDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/BancosContasDb.cs
deleted file mode 100644
index 14b8314..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/BancosContasDb.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-using Gestor.Infrastructure.Entities.Common;
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Financeiro
-{
- public class BancosContasDb : EntityBase
- {
- public virtual string Agencia
- {
- get;
- set;
- }
-
- public virtual bool Ativo
- {
- get;
- set;
- }
-
- public virtual BancoDb Banco
- {
- get;
- set;
- }
-
- public virtual string Conta
- {
- get;
- set;
- }
-
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public virtual long IdEmpresa
- {
- get;
- set;
- }
-
- public virtual string Observacao
- {
- get;
- set;
- }
-
- public BancosContasDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/CentroDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/CentroDb.cs
deleted file mode 100644
index 0947564..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/CentroDb.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Financeiro
-{
- public class CentroDb : EntityBase
- {
- public virtual bool Ativo
- {
- get;
- set;
- }
-
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public virtual long IdEmpresa
- {
- get;
- set;
- }
-
- public CentroDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/ControleFinanceiroDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/ControleFinanceiroDb.cs
deleted file mode 100644
index 1aeefbf..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/ControleFinanceiroDb.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Financeiro
-{
- public class ControleFinanceiroDb : EntityBase
- {
- public virtual CentroDb Centro
- {
- get;
- set;
- }
-
- public virtual FornecedorDb Fornecedor
- {
- get;
- set;
- }
-
- public virtual string Historico
- {
- get;
- set;
- }
-
- public virtual int Parcelas
- {
- get;
- set;
- }
-
- public virtual PlanosDb Plano
- {
- get;
- set;
- }
-
- public ControleFinanceiroDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/FornecedorDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/FornecedorDb.cs
deleted file mode 100644
index bd1efaf..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/FornecedorDb.cs
+++ /dev/null
@@ -1,110 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Model.Common;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Financeiro
-{
- public class FornecedorDb : EnderecoBase
- {
- public virtual bool Ativo
- {
- get;
- set;
- }
-
- public virtual string Documento
- {
- get;
- set;
- }
-
- public virtual string Email
- {
- get;
- set;
- }
-
- public virtual long? IdCentro
- {
- get;
- set;
- }
-
- public virtual long? IdConta
- {
- get;
- set;
- }
-
- public virtual long IdEmpresa
- {
- get;
- set;
- }
-
- public virtual long? IdPlano
- {
- get;
- set;
- }
-
- public virtual string Nome
- {
- get;
- set;
- }
-
- public virtual string Observacao
- {
- get;
- set;
- }
-
- public virtual string Prefixo1
- {
- get;
- set;
- }
-
- public virtual string Prefixo2
- {
- get;
- set;
- }
-
- public virtual string Telefone1
- {
- get;
- set;
- }
-
- public virtual string Telefone2
- {
- get;
- set;
- }
-
- public virtual Gestor.Model.Common.TipoPagamento? TipoPagamento
- {
- get;
- set;
- }
-
- public virtual TipoTelefone? TipoTelefone1
- {
- get;
- set;
- }
-
- public virtual TipoTelefone? TipoTelefone2
- {
- get;
- set;
- }
-
- public FornecedorDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/LancamentoDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/LancamentoDb.cs
deleted file mode 100644
index 3a86b17..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/LancamentoDb.cs
+++ /dev/null
@@ -1,116 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using Gestor.Model.Common;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Financeiro
-{
- public class LancamentoDb : EntityBase
- {
- public virtual DateTime? Baixa
- {
- get;
- set;
- }
-
- public virtual string CodigoBanco
- {
- get;
- set;
- }
-
- public virtual string Competencia
- {
- get;
- set;
- }
-
- public virtual string Complemento
- {
- get;
- set;
- }
-
- public virtual BancosContasDb Conta
- {
- get;
- set;
- }
-
- public virtual ControleFinanceiroDb Controle
- {
- get;
- set;
- }
-
- public virtual DateTime? DataLancamento
- {
- get;
- set;
- }
-
- public virtual string Documento
- {
- get;
- set;
- }
-
- public virtual string Historico
- {
- get;
- set;
- }
-
- public virtual string Observacao
- {
- get;
- set;
- }
-
- public virtual DateTime? Pagamento
- {
- get;
- set;
- }
-
- public virtual int Parcela
- {
- get;
- set;
- }
-
- public virtual Gestor.Model.Common.Sinal Sinal
- {
- get;
- set;
- }
-
- public virtual Gestor.Model.Common.TipoPagamento TipoPagamento
- {
- get;
- set;
- }
-
- public virtual decimal Valor
- {
- get;
- set;
- }
-
- public virtual decimal? ValorPago
- {
- get;
- set;
- }
-
- public virtual DateTime Vencimento
- {
- get;
- set;
- }
-
- public LancamentoDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanoDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanoDb.cs
deleted file mode 100644
index e53f981..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanoDb.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Financeiro
-{
- public class PlanoDb : EntityBase
- {
- public virtual bool Ativo
- {
- get;
- set;
- }
-
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public PlanoDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanosDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanosDb.cs
deleted file mode 100644
index 0bbdb29..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanosDb.cs
+++ /dev/null
@@ -1,45 +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.Financeiro
-{
- public class PlanosDb : EntityBase
- {
- public virtual bool Ativo
- {
- get;
- set;
- }
-
- public virtual string Descricao
- {
- get;
- set;
- }
-
- public virtual PlanoDb Plano
- {
- get;
- set;
- }
-
- public virtual Gestor.Model.Common.Sinal Sinal
- {
- get;
- set;
- }
-
- public virtual TipoContaDb TipoConta
- {
- get;
- set;
- }
-
- public PlanosDb()
- {
- }
- }
-} \ No newline at end of file
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/SaldoDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/SaldoDb.cs
deleted file mode 100644
index 3b1b42f..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/SaldoDb.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-using Gestor.Infrastructure.Entities.Generic;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Financeiro
-{
- public class SaldoDb : EntityBase
- {
- public virtual BancosContasDb Conta
- {
- get;
- set;
- }
-
- public virtual DateTime? DataFinal
- {
- get;
- set;
- }
-
- public virtual DateTime DataInicio
- {
- get;
- set;
- }
-
- public virtual string Extrato
- {
- get;
- set;
- }
-
- public virtual decimal? ValorFinal
- {
- get;
- set;
- }
-
- public virtual decimal ValorInicio
- {
- get;
- set;
- }
-
- public SaldoDb()
- {
- }
- }
-} \ No newline at end of file