51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloConvenioCartoes
|
|
{
|
|
public ModeloConvenioCartoes()
|
|
{
|
|
ID_CONV_CARTOES = 0;
|
|
CODIGO = string.Empty;
|
|
NOME = string.Empty;
|
|
COMIS_CRED = string.Empty;
|
|
COMIS_DEBT = string.Empty;
|
|
OP_CRED = string.Empty;
|
|
OP_DEBT = string.Empty;
|
|
LANCA_30 = string.Empty;
|
|
CNPJ_OPERADORA = string.Empty;
|
|
this.TBAND = string.Empty;
|
|
}
|
|
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; }
|
|
}
|
|
} |