Пример #1
0
 /// <summary>
 /// Called when [disposing].
 /// </summary>
 protected override void OnDisposing()
 {
     ListadeBoletos = null;
     Banco = null;
     Cedente = null;
     if (boletofc != null)
         boletofc.Dispose();
 }
Пример #2
0
 /// <summary>
 /// Called when [initialize].
 /// </summary>
 protected override void OnInitialize()
 {
     Cedente = new Cedente(this);
     Banco = new Banco(this);            
     ListadeBoletos = new TituloCollection(this);
     DataArquivo = DateTime.Now;
     DataCreditoLanc = DateTime.Now;
     LeCedenteRetorno = false;
     NumeroArquivo = 0;            
     LayoutRemessa = LayoutRemessa.CNAB400;
     DirArqRemessa = string.Empty;
     DirArqRetorno = string.Empty;
     NomeArqRemessa = string.Empty;
     NomeArqRetorno = string.Empty;
 }