public RestaurantOptionLogic(IRestaurantOptionRepository restaurantOptionRepository, IRestaurantLogic restaurantLogic, IVoteLogic voteLogic, IVetoLogic vetoLogic)
 {
     _restaurantOptionRepository = restaurantOptionRepository;
     _restaurantLogic = restaurantLogic;
     _voteLogic = voteLogic;
     _vetoLogic = vetoLogic;
 }
 public RestaurantsController(IRestaurantLogic restaurantLogic, IRestaurantTypeLogic restaurantTypeLogic, IRestaurantOptionLogic restaurantOptionLogic, IImportRestaurantLogic importRestaurantLogic)
 {
     _restaurantLogic = restaurantLogic;
     _restaurantTypeLogic = restaurantTypeLogic;
     _restaurantOptionLogic = restaurantOptionLogic;
     _importRestaurantLogic = importRestaurantLogic;
 }
예제 #3
0
 public Jobs(IJobLogLogic jobLogLogic, IUserLogic userLogic, IRestaurantLogic restaurantLogic, IRestaurantOptionLogic restaurantOptionLogic, IVetoLogic vetoLogic)
 {
     _jobLogLogic = jobLogLogic;
     _userLogic = userLogic;
     _restaurantLogic = restaurantLogic;
     _restaurantOptionLogic = restaurantOptionLogic;
     _vetoLogic = vetoLogic;
 }
예제 #4
0
 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 ImportRestaurantLogic(IRestaurantLogic restaurantLogic)
 {
     _restaurantLogic = restaurantLogic;
 }
예제 #6
0
 public RestaurantController(IRestaurantLogic restaurantLogic)
 {
     _restaurantLogic = restaurantLogic;
 }
예제 #7
0
 public StatsController(IRestaurantLogic restaurantLogic, IVoteLogic voteLogic, IRestaurantOptionLogic restaurantOptionLogic)
 {
     _restaurantLogic = restaurantLogic;
     _voteLogic = voteLogic;
     _restaurantOptionLogic = restaurantOptionLogic;
 }