public RestaurantsController(IRestaurantLogic restaurantLogic, IRestaurantTypeLogic restaurantTypeLogic, IRestaurantOptionLogic restaurantOptionLogic, IImportRestaurantLogic importRestaurantLogic) { _restaurantLogic = restaurantLogic; _restaurantTypeLogic = restaurantTypeLogic; _restaurantOptionLogic = restaurantOptionLogic; _importRestaurantLogic = importRestaurantLogic; }
public Jobs(IJobLogLogic jobLogLogic, IUserLogic userLogic, IRestaurantLogic restaurantLogic, IRestaurantOptionLogic restaurantOptionLogic, IVetoLogic vetoLogic) { _jobLogLogic = jobLogLogic; _userLogic = userLogic; _restaurantLogic = restaurantLogic; _restaurantOptionLogic = restaurantOptionLogic; _vetoLogic = vetoLogic; }
public HomeController(IRestaurantLogic restaurantLogic, IVoteLogic voteLogic, IRestaurantOptionLogic restaurantOptionLogic, IUserLogic userLogic, IVetoLogic vetoLogic, IRestaurantRatingLogic restaurantRatingLogic) { _restaurantLogic = restaurantLogic; _voteLogic = voteLogic; _restaurantOptionLogic = restaurantOptionLogic; _userLogic = userLogic; _vetoLogic = vetoLogic; _restaurantRatingLogic = restaurantRatingLogic; }
public StatsController(IRestaurantLogic restaurantLogic, IVoteLogic voteLogic, IRestaurantOptionLogic restaurantOptionLogic) { _restaurantLogic = restaurantLogic; _voteLogic = voteLogic; _restaurantOptionLogic = restaurantOptionLogic; }
public HistoryController(IRestaurantOptionLogic restaurantOptionLogic) { _restaurantOptionLogic = restaurantOptionLogic; }