Ejemplo n.º 1
0
 public GameController(IPlatformService platform, IGameService gameService, IGameCollectionService colectionService, IGameReviewService reviewService, UserManager <ApplicationUser> userManager)
 {
     this.platform         = platform;
     this.gameService      = gameService;
     this.colectionService = colectionService;
     this.reviewService    = reviewService;
     this.userManager      = userManager;
 }
 public GameReviewController(IGameService gameService, IGameReviewService reviewService, UserManager <ApplicationUser> userManager)
 {
     this.gameService   = gameService;
     this.reviewService = reviewService;
     this.userManager   = userManager;
 }