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