51 lines
1.7 KiB
C#
51 lines
1.7 KiB
C#
using System;
|
|
using System.Numerics;
|
|
using System.Runtime.ConstrainedExecution;
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloClientesEnderecos
|
|
{
|
|
public ModeloClientesEnderecos()
|
|
{
|
|
ID_COD_CLIENTE_END = 0;
|
|
CODIGO = string.Empty;
|
|
COD_CLIENTE = string.Empty;
|
|
LOGRADOURO = string.Empty;
|
|
NUMERO = string.Empty;
|
|
COMPLEM = string.Empty;
|
|
BAIRRO = string.Empty;
|
|
CIDADE = string.Empty;
|
|
UF = string.Empty;
|
|
CEP = string.Empty;
|
|
DATA_CADASTRO = string.Empty;
|
|
}
|
|
public ModeloClientesEnderecos(int iD_COD_CLIENTE_END, string cODIGO, string cOD_CLIENTE, string lOGRADOURO, string nUMERO, string cOMPLEM, string bAIRRO, string cIDADE, string uF, string cEP, string dATA_CADASTRO)
|
|
{
|
|
ID_COD_CLIENTE_END = iD_COD_CLIENTE_END;
|
|
CODIGO = cODIGO;
|
|
COD_CLIENTE = cOD_CLIENTE;
|
|
LOGRADOURO = lOGRADOURO;
|
|
NUMERO = nUMERO;
|
|
COMPLEM = cOMPLEM;
|
|
BAIRRO = bAIRRO;
|
|
CIDADE = cIDADE;
|
|
UF = uF;
|
|
CEP = cEP;
|
|
DATA_CADASTRO = dATA_CADASTRO;
|
|
}
|
|
|
|
public int ID_COD_CLIENTE_END { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string COD_CLIENTE { get; set; }
|
|
public string LOGRADOURO { get; set; }
|
|
public string NUMERO { get; set; }
|
|
public string COMPLEM { get; set; }
|
|
public string BAIRRO { get; set; }
|
|
public string CIDADE { get; set; }
|
|
public string UF { get; set; }
|
|
public string CEP { get; set; }
|
|
public string DATA_CADASTRO { get; set; }
|
|
}
|
|
} |