Skip to content

Instantly share code, notes, and snippets.

@andrebaltieri
Created September 23, 2014 16:32
Show Gist options
  • Save andrebaltieri/df6e332e1631bcf12ad9 to your computer and use it in GitHub Desktop.
Save andrebaltieri/df6e332e1631bcf12ad9 to your computer and use it in GitHub Desktop.
public class CustomerController : ApiController
{
private ICustomerRepository _repository;
public CustomerController(ICustomerRepository repository){
_repository = repository;
}
// Meu código
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment