Skip to content

Instantly share code, notes, and snippets.

Created December 17, 2012 20:12
Show Gist options
  • Select an option

  • Save anonymous/4321703 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/4321703 to your computer and use it in GitHub Desktop.
Servicio Web antes del refactor
public class ServicioWeb : IServicioWeb
{
public void Metodo1()
{
try
{
// bla bla
}
catch (Exception ex)
{
// loggear ex
}
}
public void Metodo2()
{
try
{
// bla bla
}
catch (Exception ex)
{
// loggear ex
}
}
public void Metodo3()
{
try
{
// bla bla
}
catch (Exception ex)
{
// loggear ex
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment