コード例 #1
0
 public PeopleController(IHelloWorldWebAPIContext context)
 {
     this.repository = new PersonRepository(context);
 }
コード例 #2
0
 // Pass in DBContext to constructor
 public PersonRepository(IHelloWorldWebAPIContext context)
 {
     this.context = context;
 }