Exemplo n.º 1
0
 public void LeerParametros(StreamReader lector)
 {
     try
     {
         LeerParametrosSalida(lector);
     }
     catch (Exception e)
     {
         throw new Exception(Mensajes.ErrorAlLeerParametroDeSalida(e));
     }
     try
     {
         LeerParametrosEntrada(lector);
     }
     catch (Exception e)
     {
         throw new Exception(Mensajes.ErrorAlLeerParametroDeEntrada(e));
     }
 }