Ejemplo n.º 1
0
 public PeopleController()
 {
     _repo = new PersonRepository(); //we would want to DI this in real life
 }
Ejemplo n.º 2
0
 private async Task InitializeAsync()
 {
     _repo = new PersonRepository();
     await _repo.Initilization;
 }