public GetTopAccountsQueryHandler(ISudokuDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetAccountByEmailPasswordQueryHandler(ISudokuDbContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public CreateGameCommandHandler(ISudokuDbContext context, IGameService gameService)
 {
     _context     = context;
     _gameService = gameService;
 }
Esempio n. 4
0
 public GameService(ISudokuDbContext context)
 {
     _context = context;
 }