74 lines
2.1 KiB
C#
74 lines
2.1 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloBoletos
|
|
{
|
|
public ModeloBoletos()
|
|
{
|
|
this.ID_BOLETO = 0;
|
|
this.CODIGO = string.Empty;
|
|
this.EMITIDO = string.Empty;
|
|
this.VENCE = string.Empty;
|
|
this.VALOR = string.Empty;
|
|
this.NUMERO = string.Empty;
|
|
this.PG = string.Empty;
|
|
this.SACADO = string.Empty;
|
|
this.CONTA = string.Empty;
|
|
this.OBSERVACAO = string.Empty;
|
|
this.COD_CONTA = string.Empty;
|
|
this.NOSSO_NUMERO = string.Empty;
|
|
this.ACEITE = string.Empty;
|
|
this.IMPRESSO = string.Empty;
|
|
this.IMPORTACAO = string.Empty;
|
|
}
|
|
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; }
|
|
}
|
|
} |