38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloConvenioCartoes
|
|
{
|
|
public ModeloConvenioCartoes(int iD_CONV_CARTOES, string cODIGO, string nOME,
|
|
string cOMIS_CRED, string cOMIS_DEBT, string oP_CRED, string oP_DEBT, string lANCA_30,
|
|
string cNPJ_OPERADORA, string tBand)
|
|
{
|
|
ID_CONV_CARTOES = iD_CONV_CARTOES;
|
|
CODIGO = cODIGO;
|
|
NOME = nOME;
|
|
COMIS_CRED = cOMIS_CRED;
|
|
COMIS_DEBT = cOMIS_DEBT;
|
|
OP_CRED = oP_CRED;
|
|
OP_DEBT = oP_DEBT;
|
|
LANCA_30 = lANCA_30;
|
|
CNPJ_OPERADORA = cNPJ_OPERADORA;
|
|
this.tBand = tBand;
|
|
}
|
|
|
|
public int ID_CONV_CARTOES { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string NOME { get; set; }
|
|
|
|
public string COMIS_CRED { get; set; }
|
|
public string COMIS_DEBT { get; set; }
|
|
|
|
public string OP_CRED { get; set; }
|
|
public string OP_DEBT { get; set; }
|
|
|
|
public string LANCA_30 { get; set; }
|
|
|
|
public string CNPJ_OPERADORA { get; set; }
|
|
public string tBand { get; set; }
|
|
}
|
|
} |