public AuthenticationService(IConfiguration config, VikinQuizContext context)
 {
     this.config  = config;
     this.context = context;
 }
 public GameRepository(VikinQuizContext context)
 {
     this.context = context;
 }
Exemple #3
0
 public AnswerRepository(VikinQuizContext context)
 {
     this.context = context;
 }
 public QuestionRepository(VikinQuizContext context)
 {
     this.context = context;
 }
 public UserRepository(VikinQuizContext context, AuthenticationService authenticationService)
 {
     this.context = context;
     this.authenticationService = authenticationService;
 }