Пример #1
0
 public PracticeController(TPPContext context) : base(context)
 {
     _service = new PracticeService(context);
 }
Пример #2
0
 public AuthController(TPPContext context) : base(context)
 {
     _service = new AuthService(context);
 }
Пример #3
0
 public LocationService(TPPContext context) : base(context)
 {
     _db = context?.TppDbConnection;
     RegisterEntities();
 }
 public CognitiveServicesController(TPPContext context) : base(context)
 {
     _service = new CognitiveService(context);
 }
Пример #5
0
 public MessageController(TPPContext context) : base(context)
 {
     _service = new MessageService(context);
 }
Пример #6
0
 public TPPBaseController(TPPContext context)
 {
     _context = context;
 }
Пример #7
0
 public SessionController(TPPContext context) : base(context)
 {
     _service = new SessionService(context);
 }
Пример #8
0
 public QuestionnaireService(TPPContext context) : base(context)
 {
     _db = context?.TppDbConnection;
     RegisterEntities();
 }
Пример #9
0
 public WorkoutController(TPPContext context) : base(context)
 {
     _service = new WorkoutService(context);
 }
Пример #10
0
 public SettingsController(TPPContext context) : base(context)
 {
     this._service        = new SettingsService(context);
     this._sessionservice = new SessionService(context);
 }
Пример #11
0
 public PlayerResponseService(TPPContext context) : base(context)
 {
     _db = context?.TppDbConnection;
     RegisterEntities();
 }
Пример #12
0
 public QuestionnaireController(TPPContext context) : base(context)
 {
     _service = new QuestionnaireService(context);
 }
Пример #13
0
 public DrillController(TPPContext context) : base(context)
 {
     _service = new DrillService(context);
 }
Пример #14
0
 public BenchmarkService(TPPContext context) : base(context)
 {
     _db = context?.TppDbConnection;
 }
Пример #15
0
 public PlayerResponseController(TPPContext context) : base(context)
 {
     _service = new PlayerResponseService(context);
 }
Пример #16
0
 public TeamController(TPPContext context) : base(context)
 {
     this._service = new TeamService(context);
 }