public HomeController(IDragonUserStore<AppMember> userStore, IFederationService federationService, ApplicationSignInManager signInManager, ApplicationUserManager userManager) { _userStore = userStore; _federationService = federationService; _signInManager = signInManager; _userManager = userManager; }
public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IDragonUserStore<AppMember> userStore, IFederationService federationService, IAppService appService) { _userStore = userStore; _federationService = federationService; _appService = appService; UserManager = userManager; SignInManager = signInManager; }
public TournamentController(ITournamentService tournamentService, IFederationService federationService, IRoundService roundService) { _tournamentService = tournamentService; _roundService = roundService; var federations = federationService.GetAll(); ViewBag.Federations = Mapper.Map <IEnumerable <Federation>, IEnumerable <FederationViewModel> >(federations); }
public HomeController(IDragonUserStore <AppMember> userStore, IFederationService federationService, ApplicationSignInManager signInManager, ApplicationUserManager userManager, IRepository <UserActivity> userActivityRepository, IProviderLimiterService providerLimiterService) { _userStore = userStore; _federationService = federationService; _signInManager = signInManager; _userManager = userManager; _userActivityRepository = userActivityRepository; _providerLimiterService = providerLimiterService; }
public HomeController(IFederationService federationService) { _federationService = federationService; }
public ManageController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IFederationService federationService) { UserManager = userManager; SignInManager = signInManager; _federationService = federationService; }
public FederationsController(IFederationService service) { _service = service; }