Created
September 23, 2014 16:32
-
-
Save andrebaltieri/df6e332e1631bcf12ad9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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