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