/// <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; }
public TaskService(IScheduleTaskService scheduleTaskService, ILogSosService logSosService) { _scheduleTaskService = scheduleTaskService; _logSosService = logSosService; }
/// <summary> /// SosGeoLocation Controller /// </summary> /// <param name="sosGeoLocationService"></param> /// <param name="logSosService"></param> public SosGeoLocationController(ISosGeolocationService sosGeoLocationService, ILogSosService logSosService) { _sosGeoLocationService = sosGeoLocationService; _logSosService = logSosService; }