public TargetResultController(
     ByodLauncherContext context,
     IMapper mapper,
     IHubContext <SessionHub, ISessionHub> sessionHub
     )
 {
     _context    = context;
     _mapper     = mapper;
     _sessionHub = sessionHub;
 }
Ejemplo n.º 2
0
 public SessionHub(ByodLauncherContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public ParticipantController(ByodLauncherContext context, IConfiguration configuration)
 {
     _context       = context;
     _configuration = configuration;
 }
Ejemplo n.º 4
0
 public ParticipantController(ByodLauncherContext context, IConfiguration configuration, IHubContext <SessionHub, ISessionHub> sessionHub)
 {
     _context       = context;
     _configuration = configuration;
     _sessionHub    = sessionHub;
 }
 public SessionCodeService(ByodLauncherContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public SessionController(ByodLauncherContext context, IMapper mapper, SessionCodeService sessionCodeService)
 {
     _context            = context;
     _mapper             = mapper;
     _sessionCodeService = sessionCodeService;
 }
 public StageTargetController(ByodLauncherContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Ejemplo n.º 8
0
 public TutorialStepController(ByodLauncherContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Ejemplo n.º 9
0
 public TargetController(ByodLauncherContext context, IMapper mapper, IConfiguration configuration)
 {
     _context       = context;
     _mapper        = mapper;
     _configuration = configuration;
 }
 public DirectorController(ByodLauncherContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }