コード例 #1
0
 public FeaturedContentController(IFeaturedContentAppService service)
 {
     featuredContentAppService = service;
 }
コード例 #2
0
 public HomeController(IUserPreferencesAppService userPreferencesAppService, IFeaturedContentAppService featuredContentAppService, IGameAppService gameAppService) : base()
 {
     this.userPreferencesAppService = userPreferencesAppService;
     this.featuredContentAppService = featuredContentAppService;
     this.gameAppService            = gameAppService;
 }