51 lines
1.8 KiB
C#
51 lines
1.8 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNotasEnderecos
|
|
{
|
|
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; }
|
|
}
|
|
} |