Ejemplo n.º 1
0
 public AnalysisController(AnalysisService _service, IDataFromFile dataFromFile, DataTools model
                           , SequentialDataTools sTools, FallDetection d)
 {
     this._service = _service;
     _dataFromFile = dataFromFile;
     _model        = model;
     _sTools       = sTools;
     _d            = d;
 }
Ejemplo n.º 2
0
 public BatchController(
     BatchService gpsService,
     SequentialDataTools stools,
     AnalysisService det
     )
 {
     this._service = gpsService;
     this._stools  = stools;
     this._det     = det;
 }
Ejemplo n.º 3
0
 public AnalysisService(
     IHubContext <SignalRHub> hubContext,
     GPSService gpsService,
     AccelerometerServicecs acService,
     BatchService batchService,
     GyroscopeService gyroService,
     SequentialDataTools stools,
     FallDetection det,
     HubImpl hubImpl
     )
 {
     this.hubContext   = hubContext;
     this.gpsService   = gpsService;
     this.acService    = acService;
     this.batchService = batchService;
     this.gyroService  = gyroService;
     this._stools      = stools;
     this._det         = det;
     this._hubImpl     = hubImpl;
 }