diff options
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/BancosContasDb.cs')
| -rw-r--r-- | Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Financeiro/BancosContasDb.cs | 56 |
1 files changed, 56 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 |