Exemplo n.º 1
0
 public CoffeeService(ICoffeeRepo repo)
 {
     _repo = repo;
 }
Exemplo n.º 2
0
 public CoffeeAPILogic(ICoffeeRepo coffeeRepo, IUserRatingRepo userRatingRepo, ICoffeeUserRatingRepo coffeeUserRatingRepo)
 {
     this._coffeeRepo           = coffeeRepo;
     this._userRatingRepo       = userRatingRepo;
     this._coffeeUserRatingRepo = coffeeUserRatingRepo;
 }
Exemplo n.º 3
0
 public CoffeeController(ICoffeeRepo coffeeRepo)
 {
     _coffeeRepo = coffeeRepo;
 }