summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/EmpresaDb.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/EmpresaDb.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/EmpresaDb.cs189
1 files changed, 189 insertions, 0 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/EmpresaDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/EmpresaDb.cs
new file mode 100644
index 0000000..aba1186
--- /dev/null
+++ b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/EmpresaDb.cs
@@ -0,0 +1,189 @@
+using Gestor.Infrastructure.Entities.Generic;
+using Gestor.Model.Common;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Infrastructure.Entities.Common
+{
+ public class EmpresaDb : EnderecoBase
+ {
+ private string _email;
+
+ public virtual string Documento
+ {
+ get;
+ set;
+ }
+
+ public virtual string Email
+ {
+ get
+ {
+ string str = this._email;
+ if (str != null)
+ {
+ return str.ToLower();
+ }
+ return null;
+ }
+ set
+ {
+ this._email = value;
+ }
+ }
+
+ public virtual string EmailResponsavel
+ {
+ get;
+ set;
+ }
+
+ public virtual string Facebook
+ {
+ get;
+ set;
+ }
+
+ public virtual string Instagram
+ {
+ get;
+ set;
+ }
+
+ public virtual string Linkdin
+ {
+ get;
+ set;
+ }
+
+ public virtual string Localizacao
+ {
+ get;
+ set;
+ }
+
+ public virtual byte[] Logo
+ {
+ get;
+ set;
+ }
+
+ public virtual string LogoId
+ {
+ get;
+ set;
+ }
+
+ public virtual int MaxFileSize
+ {
+ get;
+ set;
+ }
+
+ public virtual string Nome
+ {
+ get;
+ set;
+ }
+
+ public virtual string NomeSocial
+ {
+ get;
+ set;
+ }
+
+ public virtual string PrimeiroPrefixo
+ {
+ get;
+ set;
+ }
+
+ public virtual string PrimeiroTelefone
+ {
+ get;
+ set;
+ }
+
+ public virtual string QuantidadeFiliais
+ {
+ get;
+ set;
+ }
+
+ public virtual long QuantidadeFuncionarios
+ {
+ get;
+ set;
+ }
+
+ public virtual string Responsavel
+ {
+ get;
+ set;
+ }
+
+ public virtual string SegundoPrefixo
+ {
+ get;
+ set;
+ }
+
+ public virtual string SegundoTelefone
+ {
+ get;
+ set;
+ }
+
+ public virtual string SenhaAdmin
+ {
+ get;
+ set;
+ }
+
+ public virtual string Serial
+ {
+ get;
+ set;
+ }
+
+ public virtual string Site
+ {
+ get;
+ set;
+ }
+
+ public virtual TipoTelefone? TipoTelefone1
+ {
+ get;
+ set;
+ }
+
+ public virtual TipoTelefone? TipoTelefone2
+ {
+ get;
+ set;
+ }
+
+ public virtual string Twitter
+ {
+ get;
+ set;
+ }
+
+ public virtual string Whatsapp
+ {
+ get;
+ set;
+ }
+
+ public virtual string WhatsappSinistro
+ {
+ get;
+ set;
+ }
+
+ public EmpresaDb()
+ {
+ }
+ }
+} \ No newline at end of file