Ejemplo n.º 1
0
 /// <summary>
 /// Contact Controller
 /// </summary>
 /// <param name="contactService"></param>
 /// <param name="safetySettingService"></param>
 /// <param name="exportExel"></param>
 /// <param name="exportPdf"></param>
 public ContactController(IContactService contactService, ISafetySettingService safetySettingService, IExportExel exportExel, IExportPdf exportPdf)
 {
     _contactService       = contactService;
     _safetySettingService = safetySettingService;
     _exportExel           = exportExel;
     _exportPdf            = exportPdf;
 }
Ejemplo n.º 2
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;
 }