public UsersController(IRestaurantInteractor restaurantInteractor, IDishInteractor dishInteractor, IUserInteractor userInteractor, IDishReviewInteractor dishReviewInteractor)
 {
     _restaurantInteractor = restaurantInteractor;
     _dishInteractor       = dishInteractor;
     _userInteractor       = userInteractor;
     _dishReviewInteractor = dishReviewInteractor;
 }
示例#2
0
 public RestaurantsController(IRestaurantInteractor restaurantInteractor, IDishInteractor dishInteractor, IDishReviewInteractor dishReviewInteractor)
 {
     _restaurantInteractor = restaurantInteractor;
     _dishInteractor       = dishInteractor;
     _dishReviewInteractor = dishReviewInteractor;
 }