public RestaurantsController(IRestaurantLogic restaurantLogic, IRestaurantTypeLogic restaurantTypeLogic, IRestaurantOptionLogic restaurantOptionLogic, IImportRestaurantLogic importRestaurantLogic)
 {
     _restaurantLogic = restaurantLogic;
     _restaurantTypeLogic = restaurantTypeLogic;
     _restaurantOptionLogic = restaurantOptionLogic;
     _importRestaurantLogic = importRestaurantLogic;
 }
Exemplo n.º 2
0
 public Jobs(IJobLogLogic jobLogLogic, IUserLogic userLogic, IRestaurantLogic restaurantLogic, IRestaurantOptionLogic restaurantOptionLogic, IVetoLogic vetoLogic)
 {
     _jobLogLogic = jobLogLogic;
     _userLogic = userLogic;
     _restaurantLogic = restaurantLogic;
     _restaurantOptionLogic = restaurantOptionLogic;
     _vetoLogic = vetoLogic;
 }
Exemplo n.º 3
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;
 }
Exemplo n.º 4
0
 public StatsController(IRestaurantLogic restaurantLogic, IVoteLogic voteLogic, IRestaurantOptionLogic restaurantOptionLogic)
 {
     _restaurantLogic = restaurantLogic;
     _voteLogic = voteLogic;
     _restaurantOptionLogic = restaurantOptionLogic;
 }
Exemplo n.º 5
0
 public HistoryController(IRestaurantOptionLogic restaurantOptionLogic)
 {
     _restaurantOptionLogic = restaurantOptionLogic;
 }