Skip to content

Instantly share code, notes, and snippets.

@yesez
Created May 6, 2013 03:16
Show Gist options
  • Save yesez/5523185 to your computer and use it in GitHub Desktop.
Save yesez/5523185 to your computer and use it in GitHub Desktop.
public class PaisesSinDiController : ApiController
{
private readonly IPaisRepository repositorio;
public PaisesSinDiController(IPaisRepository repositorio)
{
this.repositorio = repositorio;
}
public IEnumerable<Pais> Get()
{
return repositorio.GetAll();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment