public PlayerService(IPokemonUserSQLStore pokemonUserSQLStore, UserManager <DapperIdentityUser> userManager, IHttpContextAccessor httpsContextAccessor, IQuizCalculations quizCalculations)
 {
     _pokemonUserSQLStore = pokemonUserSQLStore;
     _userManager         = userManager;
     _httpContextAccessor = httpsContextAccessor;
     _quizCalculations    = quizCalculations;
 }
 public PokemonUserSQLService(IPokemonUserSQLStore pokemonUserSQLStore, UserManager <DapperIdentityUser> userManager, IHttpContextAccessor httpsContextAccessor)
 {
     _pokemonUserSQLStore = pokemonUserSQLStore;
     _userManager         = userManager;
     _httpContextAccessor = httpsContextAccessor;
 }
Exemplo n.º 3
0
 public QuizCalculations(IPokemonUserSQLStore pokemonUserSQLStore)
 {
     _pokemonUserSQLStore = pokemonUserSQLStore;
 }