public HomeController(IGameSearchService gamesSearchService, IReviewService reviewService, IPostService postService, IGameProductService gameProductService)
 {
     this.gamesSearchService = gamesSearchService;
     this.reviewService      = reviewService;
     this.postService        = postService;
     this.gameProductService = gameProductService;
 }
 public HomeController(IGameSearchService gamesSearchService, IReviewService reviewService)
 {
     this.gamesSearchService = gamesSearchService;
     this.reviewService      = reviewService;
 }
Beispiel #3
0
 public StoreLinkTagHelper(IGameSearchService gameSearchService)
 {
     this.gameSearchService = gameSearchService;
 }
Beispiel #4
0
 public GameProductService(GameAppDbContext context, IGameSearchService gameSearchService)
 {
     this.context           = context;
     this.gameSearchService = gameSearchService;
 }