Beispiel #1
0
 public UserService(KickyBallContext context, PasswordHasher passwordHasher, IConfiguration configuration, IGameService gameService)
 {
     _context        = context;
     _passwordHasher = passwordHasher;
     Configuration   = configuration;
     _gameService    = gameService;
 }
 public FieldPositionService(KickyBallContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public GameService(KickyBallContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public RouteService(KickyBallContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public ApplicationSettingService(KickyBallContext context)
 {
     _context = context;
 }