Esempio n. 1
0
 public EfChampionshipsDbService(PlayersDbContext context)
 {
     _context = context;
 }
 public PlayerAttendanceEventHandler(PlayersDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Esempio n. 3
0
 public PlayerRepository(PlayersDbContext context)
 {
     _context = context;
 }
 public GetPlayersHandler(PlayersDbContext context, IMapper mapper)
 {
     _dbContext = context;
     _mapper    = mapper;
 }
Esempio n. 5
0
 public ValuesController(PlayersDbContext context)
 {
     _context = context;
 }
 public AssignToGroupHandler(PlayersDbContext context, IBusPublisher busPublisher)
 {
     _dbContext    = context;
     _busPublisher = busPublisher;
 }
 public PlayerCreatedEventHandler(PlayersDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Esempio n. 8
0
 public ChangeLevelHandler(PlayersDbContext context)
 {
     _dbContext = context;
 }