Ejemplo n.º 1
0
        private void ProcessarRetorno(RetornoBoleto retorno)
        {
            var boleto = boletos.FirstOrDefault(x => x.Numero == retorno.NumeroBoleto);
            if (boleto == null)
                throw new ArgumentException(string.Format("Não foi encontrado o boleto com o número {0}", retorno.NumeroBoleto));

            if (boleto.EmAberto)
            {
                if (ValoresSaoCorrespondentes(boleto, retorno))
                    boleto.Fechar();
                else
                    notificador.ValoresDiferentes(boleto, retorno);
            }
            else
                notificador.BoletoFechado(boleto);
        }
Ejemplo n.º 2
0
 private bool ValoresSaoCorrespondentes(Boleto boleto, RetornoBoleto retorno)
 {
     return boleto.Valor == retorno.Valor;
 }