Exemple #1
0
 public HomeController(IBenchRepository repository)
 {
     this.repository = repository;
 }
Exemple #2
0
 public BenchApiController(IBenchRepository repository)
 {
     _repository = repository;
 }
Exemple #3
0
 public BenchController(IBenchRepository benchRepo, IReviewRepository reviewRepo)
 {
     this.benchRepo  = benchRepo;
     this.reviewRepo = reviewRepo;
 }
 public BenchesController(IBenchRepository repository)
 {
     this.repository = repository;
 }