diff options
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro')
8 files changed, 475 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/BancosContasDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/BancosContasDb.cs new file mode 100644 index 0000000..14b8314 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/BancosContasDb.cs @@ -0,0 +1,56 @@ +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/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/CentroDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/CentroDb.cs new file mode 100644 index 0000000..0947564 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/CentroDb.cs @@ -0,0 +1,31 @@ +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/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/ControleFinanceiroDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/ControleFinanceiroDb.cs new file mode 100644 index 0000000..1aeefbf --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/ControleFinanceiroDb.cs @@ -0,0 +1,43 @@ +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/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/FornecedorDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/FornecedorDb.cs new file mode 100644 index 0000000..bd1efaf --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/FornecedorDb.cs @@ -0,0 +1,110 @@ +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/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/LancamentoDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/LancamentoDb.cs new file mode 100644 index 0000000..3a86b17 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/LancamentoDb.cs @@ -0,0 +1,116 @@ +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/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanoDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanoDb.cs new file mode 100644 index 0000000..e53f981 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanoDb.cs @@ -0,0 +1,25 @@ +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/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanosDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanosDb.cs new file mode 100644 index 0000000..0bbdb29 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/PlanosDb.cs @@ -0,0 +1,45 @@ +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/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/SaldoDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/SaldoDb.cs new file mode 100644 index 0000000..3b1b42f --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/SaldoDb.cs @@ -0,0 +1,49 @@ +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 |