Ejemplo n.º 1
0
 /// <summary>
 /// Safety Setting Controller
 /// </summary>
 /// <param name="safetySettingService"></param>
 /// <param name="rideInformationService"></param>
 /// <param name="sosGeolocationService"></param>
 /// <param name="yayYoService"></param>
 /// <param name="contactService"></param>
 /// <param name="logSosService"></param>
 public SafetySettingController(ISafetySettingService safetySettingService, ILogRideInformationService rideInformationService, ISosGeolocationService sosGeolocationService,
                                IYayYoService yayYoService, IContactService contactService, ILogSosService logSosService)
 {
     _safetySettingService   = safetySettingService;
     _rideInformationService = rideInformationService;
     _sosGeolocationService  = sosGeolocationService;
     _yayYoService           = yayYoService;
     _contactService         = contactService;
     _logSosService          = logSosService;
 }
Ejemplo n.º 2
0
 public TaskService(IScheduleTaskService scheduleTaskService, ILogSosService logSosService)
 {
     _scheduleTaskService = scheduleTaskService;
     _logSosService       = logSosService;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// SosGeoLocation Controller
 /// </summary>
 /// <param name="sosGeoLocationService"></param>
 /// <param name="logSosService"></param>
 public SosGeoLocationController(ISosGeolocationService sosGeoLocationService, ILogSosService logSosService)
 {
     _sosGeoLocationService = sosGeoLocationService;
     _logSosService         = logSosService;
 }