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