Ejemplo n.º 1
0
 public HomeController(SightingRepository sightingRepository, Answers answers)
 {
     this.sightingRepository = sightingRepository;
     this.answers            = answers;
 }
Ejemplo n.º 2
0
 public SightingController()
 {
     _sightingRepository = new SightingRepository();
 }
Ejemplo n.º 3
0
 public SightingsController(SightingRepository sightingRepository)
 {
     _sightingRepository = sightingRepository;
 }