Exemplo n.º 1
0
 public NationalParksController(INationaParkRepository npRepo)
 {
     _npRepo = npRepo;
 }
Exemplo n.º 2
0
 public TrailsController(INationaParkRepository npRepo, ITrailRepository tRepo)
 {
     _npRepo = npRepo;
     _tRepo  = tRepo;
 }