コード例 #1
0
 public RestaurantsController(IRestaurantLogic restaurantLogic, IRestaurantTypeLogic restaurantTypeLogic, IRestaurantOptionLogic restaurantOptionLogic, IImportRestaurantLogic importRestaurantLogic)
 {
     _restaurantLogic = restaurantLogic;
     _restaurantTypeLogic = restaurantTypeLogic;
     _restaurantOptionLogic = restaurantOptionLogic;
     _importRestaurantLogic = importRestaurantLogic;
 }
コード例 #2
0
ファイル: Jobs.cs プロジェクト: ericdc1/whatsforlunch
 public Jobs(IJobLogLogic jobLogLogic, IUserLogic userLogic, IRestaurantLogic restaurantLogic, IRestaurantOptionLogic restaurantOptionLogic, IVetoLogic vetoLogic)
 {
     _jobLogLogic = jobLogLogic;
     _userLogic = userLogic;
     _restaurantLogic = restaurantLogic;
     _restaurantOptionLogic = restaurantOptionLogic;
     _vetoLogic = vetoLogic;
 }
コード例 #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;
 }
コード例 #4
0
 public StatsController(IRestaurantLogic restaurantLogic, IVoteLogic voteLogic, IRestaurantOptionLogic restaurantOptionLogic)
 {
     _restaurantLogic = restaurantLogic;
     _voteLogic = voteLogic;
     _restaurantOptionLogic = restaurantOptionLogic;
 }
コード例 #5
0
 public HistoryController(IRestaurantOptionLogic restaurantOptionLogic)
 {
     _restaurantOptionLogic = restaurantOptionLogic;
 }