예제 #1
0
 public MatchController(UserManager <AramIdentityUser> userManager,
                        ApplicationDbContext dbContext,
                        IOptions <ApplicationConfiguration> options,
                        ILolStaticDataService lolStatic,
                        IRiotAPIService riotAPI,
                        IBackgroundTaskQueue queue,
                        IServiceProvider services)
 {
     this.userManager = userManager;
     this.dbContext   = dbContext;
     this.options     = options;
     this.lolStatic   = lolStatic;
     this.riotAPI     = riotAPI;
     this.queue       = queue;
     this.services    = services;
 }
예제 #2
0
 public LadderController(UserManager <AramIdentityUser> userManager, ApplicationDbContext dbContext, IRiotAPIService riotAPI)
 {
     this.userManager = userManager;
     this.dbContext   = dbContext;
     this.riotAPI     = riotAPI;
 }