75 lines
2.6 KiB
C#
75 lines
2.6 KiB
C#
using System;
|
|
using System.Runtime.ConstrainedExecution;
|
|
using System.Security.Claims;
|
|
using static System.Net.Mime.MediaTypeNames;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNotasEnderecos
|
|
{
|
|
public ModeloNotasEnderecos()
|
|
{
|
|
ID_NOTAS_ENDERECOS = 0;
|
|
CODIGO = string.Empty;
|
|
COD_NOTA = string.Empty;
|
|
CNPJ_CPF = string.Empty;
|
|
this.XLgr = string.Empty;
|
|
this.Nro = string.Empty;
|
|
this.XCpl = string.Empty;
|
|
this.XBairro = string.Empty;
|
|
this.XMun = string.Empty;
|
|
UF = string.Empty;
|
|
TIPO = string.Empty;
|
|
DATA_CADASTRO = string.Empty;
|
|
CEP = string.Empty;
|
|
CPAIS = string.Empty;
|
|
XPAIS = string.Empty;
|
|
FONE = string.Empty;
|
|
EMAIL = string.Empty;
|
|
IE = string.Empty;
|
|
}
|
|
public ModeloNotasEnderecos(int iD_NOTAS_ENDERECOS, string cODIGO, string cOD_NOTA, string cNPJ_CPF,
|
|
string xLgr, string nro, string xCpl, string xBairro, string xMun, string uF,
|
|
string tIPO, string dATA_CADASTRO, string cEP, string cPAIS, string xPAIS,
|
|
string fONE, string eMAIL, string iE)
|
|
{
|
|
ID_NOTAS_ENDERECOS = iD_NOTAS_ENDERECOS;
|
|
CODIGO = cODIGO;
|
|
COD_NOTA = cOD_NOTA;
|
|
CNPJ_CPF = cNPJ_CPF;
|
|
this.XLgr = xLgr;
|
|
this.Nro = nro;
|
|
this.XCpl = xCpl;
|
|
this.XBairro = xBairro;
|
|
this.XMun = xMun;
|
|
UF = uF;
|
|
TIPO = tIPO;
|
|
DATA_CADASTRO = dATA_CADASTRO;
|
|
CEP = cEP;
|
|
CPAIS = cPAIS;
|
|
XPAIS = xPAIS;
|
|
FONE = fONE;
|
|
EMAIL = eMAIL;
|
|
IE = iE;
|
|
}
|
|
|
|
public int ID_NOTAS_ENDERECOS { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string COD_NOTA { get; set; }
|
|
public string CNPJ_CPF { get; set; }
|
|
public string XLgr { get; set; }
|
|
public string Nro { get; set; }
|
|
public string XCpl { get; set; }
|
|
public string XBairro { get; set; }
|
|
public string XMun { get; set; }
|
|
public string UF { get; set; }
|
|
public string TIPO { get; set; }
|
|
public string DATA_CADASTRO { get; set; }
|
|
public string CEP { get; set; }
|
|
public string CPAIS { get; set; }
|
|
public string XPAIS { get; set; }
|
|
public string FONE { get; set; }
|
|
public string EMAIL { get; set; }
|
|
public string IE { get; set; }
|
|
}
|
|
} |