Skip to content

Instantly share code, notes, and snippets.

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