Ejemplo n.º 1
0
 public HomeController(IDragonUserStore<AppMember> userStore, IFederationService federationService, ApplicationSignInManager signInManager, ApplicationUserManager userManager)
 {
     _userStore = userStore;
     _federationService = federationService;
     _signInManager = signInManager;
     _userManager = userManager;
 }
Ejemplo n.º 2
0
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IDragonUserStore<AppMember> userStore, IFederationService federationService, IAppService appService)
 {
     _userStore = userStore;
     _federationService = federationService;
     _appService = appService;
     UserManager = userManager;
     SignInManager = signInManager;
 }
Ejemplo n.º 3
0
        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);
        }
Ejemplo n.º 4
0
 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;
 }
Ejemplo n.º 5
0
 public HomeController(IFederationService federationService)
 {
     _federationService = federationService;
 }
Ejemplo n.º 6
0
 public ManageController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IFederationService federationService)
 {
     UserManager = userManager;
     SignInManager = signInManager;
     _federationService = federationService;
 }
Ejemplo n.º 7
0
 public FederationsController(IFederationService service)
 {
     _service = service;
 }
Ejemplo n.º 8
0
 public ManageController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IFederationService federationService)
 {
     UserManager        = userManager;
     SignInManager      = signInManager;
     _federationService = federationService;
 }