133 lines
5.1 KiB
C#
133 lines
5.1 KiB
C#
namespace MLL
|
|
{
|
|
public class ModeloEmpresa
|
|
{
|
|
public ModeloEmpresa(int id, string nome, string cNPJ, string tipoEmpresa, string regimeTributario, string cNAE, string cep, string endereco, int numero, string complemento, string bairro, string cidade, string uF, string pais, string telefone1, string telefone2, string celular, string whatsapp, string email, string site, string inscricaoEstadual, string inscricaoMunicipal, string cNPJCPF_Contador, string nome_Contador, string textoParaRecibo)
|
|
{
|
|
Id = id;
|
|
Nome = nome;
|
|
CNPJ = cNPJ;
|
|
TipoEmpresa = tipoEmpresa;
|
|
RegimeTributario = regimeTributario;
|
|
CNAE = cNAE;
|
|
Cep = cep;
|
|
Endereco = endereco;
|
|
Numero = numero;
|
|
Complemento = complemento;
|
|
Bairro = bairro;
|
|
Cidade = cidade;
|
|
UF = uF;
|
|
Pais = pais;
|
|
Telefone1 = telefone1;
|
|
Telefone2 = telefone2;
|
|
Celular = celular;
|
|
Whatsapp = whatsapp;
|
|
Email = email;
|
|
Site = site;
|
|
InscricaoEstadual = inscricaoEstadual;
|
|
InscricaoMunicipal = inscricaoMunicipal;
|
|
CNPJCPF_Contador = cNPJCPF_Contador;
|
|
Nome_Contador = nome_Contador;
|
|
TextoParaRecibo = textoParaRecibo;
|
|
}
|
|
public ModeloEmpresa()
|
|
{
|
|
Id = 0;
|
|
Nome = string.Empty;
|
|
CNPJ = string.Empty;
|
|
TipoEmpresa = string.Empty;
|
|
RegimeTributario = string.Empty;
|
|
CNAE = string.Empty;
|
|
Cep = string.Empty;
|
|
Endereco = string.Empty;
|
|
Numero = 0;
|
|
Complemento = string.Empty;
|
|
Bairro = string.Empty;
|
|
Cidade = string.Empty;
|
|
UF = string.Empty;
|
|
Pais = string.Empty;
|
|
Telefone1 = string.Empty;
|
|
Telefone2 = string.Empty;
|
|
Celular = string.Empty;
|
|
Whatsapp = string.Empty;
|
|
Email = string.Empty;
|
|
Site = string.Empty;
|
|
InscricaoEstadual = string.Empty;
|
|
InscricaoMunicipal = string.Empty;
|
|
CNPJCPF_Contador = string.Empty;
|
|
Nome_Contador = string.Empty;
|
|
TextoParaRecibo = string.Empty;
|
|
Ativo = false;
|
|
CriadoEm = DateTime.MinValue;
|
|
AtualizadoEm = DateTime.MinValue;
|
|
}
|
|
public ModeloEmpresa(int id, string nome, string cNPJ, string tipoEmpresa, string regimeTributario, string cNAE, string cep, string endereco, int numero, string complemento, string bairro, string cidade, string uF, string pais, string telefone1, string telefone2, string celular, string whatsapp, string email, string site, string inscricaoEstadual, string inscricaoMunicipal, string cNPJCPF_Contador, string nome_Contador, string textoParaRecibo, bool ativo, DateTime criadoEm, DateTime atualizadoEm)
|
|
{
|
|
Id = id;
|
|
Nome = nome;
|
|
CNPJ = cNPJ;
|
|
TipoEmpresa = tipoEmpresa;
|
|
RegimeTributario = regimeTributario;
|
|
CNAE = cNAE;
|
|
Cep = cep;
|
|
Endereco = endereco;
|
|
Numero = numero;
|
|
Complemento = complemento;
|
|
Bairro = bairro;
|
|
Cidade = cidade;
|
|
UF = uF;
|
|
Pais = pais;
|
|
Telefone1 = telefone1;
|
|
Telefone2 = telefone2;
|
|
Celular = celular;
|
|
Whatsapp = whatsapp;
|
|
Email = email;
|
|
Site = site;
|
|
InscricaoEstadual = inscricaoEstadual;
|
|
InscricaoMunicipal = inscricaoMunicipal;
|
|
CNPJCPF_Contador = cNPJCPF_Contador;
|
|
Nome_Contador = nome_Contador;
|
|
TextoParaRecibo = textoParaRecibo;
|
|
Ativo = ativo;
|
|
CriadoEm = criadoEm;
|
|
AtualizadoEm = atualizadoEm;
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string Nome { get; set; }
|
|
public string CNPJ { get; set; }
|
|
public string TipoEmpresa { get; set; }
|
|
public string RegimeTributario { get; set; }
|
|
public string CNAE { get; set; }
|
|
|
|
public string Cep { get; set; }
|
|
public string Endereco { get; set; }
|
|
public int Numero { get; set; }
|
|
public string Complemento { get; set; }
|
|
public string Bairro { get; set; }
|
|
public string Cidade { get; set; }
|
|
public string UF { get; set; }
|
|
public string Pais { get; set; }
|
|
|
|
public string Telefone1 { get; set; }
|
|
public string Telefone2 { get; set; }
|
|
public string Celular { get; set; }
|
|
public string Whatsapp { get; set; }
|
|
public string Email { get; set; }
|
|
public string Site { get; set; }
|
|
|
|
public string InscricaoEstadual { get; set; }
|
|
public string InscricaoMunicipal { get; set; }
|
|
|
|
public string CNPJCPF_Contador { get; set; }
|
|
public string Nome_Contador { get; set; }
|
|
|
|
public string TextoParaRecibo { get; set; }
|
|
|
|
public bool Ativo { get; set; }
|
|
|
|
public DateTime CriadoEm { get; set; }
|
|
public DateTime AtualizadoEm { get; set; }
|
|
}
|
|
} |