44 lines
1.6 KiB
C#
44 lines
1.6 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloCartoes
|
|
{
|
|
public ModeloCartoes(int iD_COD_CARTAO, string cODIGO, string bANDEIRA, string nUM_CARTAO, string nOME, string vALIDADE, string aUTORIZACAO, string pARCELAS, string vALOR, string cOD_CLIENTE, string rESUMO, string dEBITO, string cOD_CONTA, string dIA, string cOMPENSADO, string oBS_COMP)
|
|
{
|
|
ID_COD_CARTAO = iD_COD_CARTAO;
|
|
CODIGO = cODIGO;
|
|
BANDEIRA = bANDEIRA;
|
|
NUM_CARTAO = nUM_CARTAO;
|
|
NOME = nOME;
|
|
VALIDADE = vALIDADE;
|
|
AUTORIZACAO = aUTORIZACAO;
|
|
PARCELAS = pARCELAS;
|
|
VALOR = vALOR;
|
|
COD_CLIENTE = cOD_CLIENTE;
|
|
RESUMO = rESUMO;
|
|
DEBITO = dEBITO;
|
|
COD_CONTA = cOD_CONTA;
|
|
DIA = dIA;
|
|
COMPENSADO = cOMPENSADO;
|
|
OBS_COMP = oBS_COMP;
|
|
}
|
|
|
|
public int ID_COD_CARTAO { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string BANDEIRA { get; set; }
|
|
public string NUM_CARTAO { get; set; }
|
|
public string NOME { get; set; }
|
|
public string VALIDADE { get; set; }
|
|
public string AUTORIZACAO { get; set; }
|
|
public string PARCELAS { get; set; }
|
|
public string VALOR { get; set; }
|
|
public string COD_CLIENTE { get; set; }
|
|
public string RESUMO { get; set; }
|
|
public string DEBITO { get; set; }
|
|
public string COD_CONTA { get; set; }
|
|
public string DIA { get; set; }
|
|
public string COMPENSADO { get; set; }
|
|
public string OBS_COMP { get; set; }
|
|
}
|
|
} |