コード例 #1
0
 public EfChampionshipsDbService(PlayersDbContext context)
 {
     _context = context;
 }
 public PlayerAttendanceEventHandler(PlayersDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #3
0
ファイル: PlayerRepository.cs プロジェクト: morsix/PlayersAPI
 public PlayerRepository(PlayersDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public GetPlayersHandler(PlayersDbContext context, IMapper mapper)
 {
     _dbContext = context;
     _mapper    = mapper;
 }
コード例 #5
0
 public ValuesController(PlayersDbContext context)
 {
     _context = context;
 }
コード例 #6
0
 public AssignToGroupHandler(PlayersDbContext context, IBusPublisher busPublisher)
 {
     _dbContext    = context;
     _busPublisher = busPublisher;
 }
 public PlayerCreatedEventHandler(PlayersDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #8
0
 public ChangeLevelHandler(PlayersDbContext context)
 {
     _dbContext = context;
 }