public PeopleController(IHelloWorldWebAPIContext context) { this.repository = new PersonRepository(context); }
// Pass in DBContext to constructor public PersonRepository(IHelloWorldWebAPIContext context) { this.context = context; }