Пример #1
0
 public ExperimentsController(CJEngineContext context, UserManager <IdentityUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Пример #2
0
 public ResearchersController(CJEngineContext context)
 {
     _context = context;
 }
Пример #3
0
 public JudgesController(CJEngineContext context)
 {
     _context = context;
 }
 public ExperimentParametersController(CJEngineContext context)
 {
     _context = context;
 }
Пример #5
0
 public PairingsController(CJEngineContext context, UserManager <IdentityUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Пример #6
0
 public ArtefactsController(CJEngineContext context, IHostingEnvironment e)
 {
     _context = context;
     he       = e;
 }
Пример #7
0
 public AlgorithmAPIController(CJEngineContext context, IHostingEnvironment e)
 {
     _context = context;
     he       = e;
 }