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