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 GameCollectionController(IGameCollectionService service, UserManager <ApplicationUser> userManager)
 {
     this.service     = service;
     this.userManager = userManager;
 }