コード例 #1
0
 public RestaurantOptionLogic(IRestaurantOptionRepository restaurantOptionRepository, IRestaurantLogic restaurantLogic, IVoteLogic voteLogic, IVetoLogic vetoLogic)
 {
     _restaurantOptionRepository = restaurantOptionRepository;
     _restaurantLogic = restaurantLogic;
     _voteLogic = voteLogic;
     _vetoLogic = vetoLogic;
 }
コード例 #2
0
 public RestaurantLogic(IRestaurantRepository restaurantRepository, IRestaurantRatingLogic restaurantRatingLogic, IVoteLogic voteLogic, IRestaurantOptionRepository restaurantOptionRepository)
 {
     _restaurantRepository = restaurantRepository;
     _restaurantRatingLogic = restaurantRatingLogic;
     _voteLogic = voteLogic;
     _restaurantOptionRepository = restaurantOptionRepository;
 }