LevelOS-Core/MLL/ModeloBoletos.cs

56 lines
1.5 KiB
C#

using System;
namespace MLL
{
public class ModeloBoletos
{
public ModeloBoletos(int iD_BOLETO, string cODIGO, string eMITIDO, string vENCE, string vALOR, string nUMERO, string pG, string sACADO, string cONTA, string oBSERVACAO, string cOD_CONTA, string nOSSO_NUMERO, string aCEITE, string iMPRESSO, string iMPORTACAO)
{
ID_BOLETO = iD_BOLETO;
CODIGO = cODIGO;
EMITIDO = eMITIDO;
VENCE = vENCE;
VALOR = vALOR;
NUMERO = nUMERO;
PG = pG;
SACADO = sACADO;
CONTA = cONTA;
OBSERVACAO = oBSERVACAO;
COD_CONTA = cOD_CONTA;
NOSSO_NUMERO = nOSSO_NUMERO;
ACEITE = aCEITE;
IMPRESSO = iMPRESSO;
IMPORTACAO = iMPORTACAO;
}
public int ID_BOLETO { get; set; }
public string CODIGO { get; set; }
public string EMITIDO { get; set; }
public string VENCE { get; set; }
public string VALOR { get; set; }
public string NUMERO { get; set; }
public string PG { get; set; }
public string SACADO { get; set; }
public string CONTA { get; set; }
public string OBSERVACAO { get; set; }
public string COD_CONTA { get; set; }
public string NOSSO_NUMERO { get; set; }
public string ACEITE { get; set; }
public string IMPRESSO { get; set; }
public string IMPORTACAO { get; set; }
}
}