88 lines
3.3 KiB
C#
88 lines
3.3 KiB
C#
using System;
|
|
using static System.Net.Mime.MediaTypeNames;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloConvenioBoletos
|
|
{
|
|
public ModeloConvenioBoletos()
|
|
{
|
|
ID_CONVENIO_BOLETOS = 0;
|
|
CODIGO = string.Empty;
|
|
BANCO = string.Empty;
|
|
CARTEIRA = string.Empty;
|
|
CONVENIO = string.Empty;
|
|
AGENCIA = string.Empty;
|
|
CONTA = string.Empty;
|
|
NOME_CEDENTE = string.Empty;
|
|
LOCAL_PGTO = string.Empty;
|
|
INSTRU_01 = string.Empty;
|
|
INSTRU_02 = string.Empty;
|
|
INSTRU_03 = string.Empty;
|
|
INSTRU_04 = string.Empty;
|
|
INSTRU_05 = string.Empty;
|
|
INSTRU_06 = string.Empty;
|
|
INSTRU_07 = string.Empty;
|
|
INSTRU_08 = string.Empty;
|
|
INSTRU_09 = string.Empty;
|
|
INSTRU_10 = string.Empty;
|
|
DIAS_PROTESTO = string.Empty;
|
|
TIPO_DOC_COB = string.Empty;
|
|
TIPO_ESP_DOC = string.Empty;
|
|
}
|
|
public ModeloConvenioBoletos(int iD_CONVENIO_BOLETOS, string cODIGO, string bANCO,
|
|
string cARTEIRA, string cONVENIO, string aGENCIA, string cONTA, string nOME_CEDENTE,
|
|
string lOCAL_PGTO, string iNSTRU_01, string iNSTRU_02, string iNSTRU_03, string iNSTRU_04,
|
|
string iNSTRU_05, string iNSTRU_06, string iNSTRU_07, string iNSTRU_08, string iNSTRU_09,
|
|
string iNSTRU_10, string dIAS_PROTESTO, string tIPO_DOC_COB, string tIPO_ESP_DOC)
|
|
{
|
|
ID_CONVENIO_BOLETOS = iD_CONVENIO_BOLETOS;
|
|
CODIGO = cODIGO;
|
|
BANCO = bANCO;
|
|
CARTEIRA = cARTEIRA;
|
|
CONVENIO = cONVENIO;
|
|
AGENCIA = aGENCIA;
|
|
CONTA = cONTA;
|
|
NOME_CEDENTE = nOME_CEDENTE;
|
|
LOCAL_PGTO = lOCAL_PGTO;
|
|
INSTRU_01 = iNSTRU_01;
|
|
INSTRU_02 = iNSTRU_02;
|
|
INSTRU_03 = iNSTRU_03;
|
|
INSTRU_04 = iNSTRU_04;
|
|
INSTRU_05 = iNSTRU_05;
|
|
INSTRU_06 = iNSTRU_06;
|
|
INSTRU_07 = iNSTRU_07;
|
|
INSTRU_08 = iNSTRU_08;
|
|
INSTRU_09 = iNSTRU_09;
|
|
INSTRU_10 = iNSTRU_10;
|
|
DIAS_PROTESTO = dIAS_PROTESTO;
|
|
TIPO_DOC_COB = tIPO_DOC_COB;
|
|
TIPO_ESP_DOC = tIPO_ESP_DOC;
|
|
}
|
|
|
|
public int ID_CONVENIO_BOLETOS { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string BANCO { get; set; }
|
|
public string CARTEIRA { get; set; }
|
|
public string CONVENIO { get; set; }
|
|
public string AGENCIA { get; set; }
|
|
public string CONTA { get; set; }
|
|
public string NOME_CEDENTE { get; set; }
|
|
public string LOCAL_PGTO { get; set; }
|
|
|
|
public string INSTRU_01 { get; set; }
|
|
public string INSTRU_02 { get; set; }
|
|
public string INSTRU_03 { get; set; }
|
|
public string INSTRU_04 { get; set; }
|
|
public string INSTRU_05 { get; set; }
|
|
public string INSTRU_06 { get; set; }
|
|
public string INSTRU_07 { get; set; }
|
|
public string INSTRU_08 { get; set; }
|
|
public string INSTRU_09 { get; set; }
|
|
public string INSTRU_10 { get; set; }
|
|
|
|
public string DIAS_PROTESTO { get; set; }
|
|
public string TIPO_DOC_COB { get; set; }
|
|
public string TIPO_ESP_DOC { get; set; }
|
|
}
|
|
} |