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