public InspektionsroutenGISController(IStrassenabschnittGISService strassenabschnittGISService,
                                       IInspektionsRouteGISService inspektionsRouteGISService,
                                       IPackageService packageService,
                                       IInspektionsRouteGISOverviewService inspektionsRouteGISOverviewService,
                                       ISessionService sessionService,
                                       IInspektionsRtStrAbschnitteService inspektionsRtStrAbschnitteService,
                                       IInspektionsRouteStatusverlaufService inspektionsRouteStatusverlaufService,
                                       IInspektionsRouteLockingService inspektionsRouteLockingService,
                                       IEreignisLogService ereignisLogService,
                                       ILocalizationService localizationService,
                                       ICheckInService checkInService,
                                       ICheckOutService checkOutService,
                                       IGeoJSONParseService geoJSONParseService)
     : base(strassenabschnittGISService)
 {
     this.localizationService         = localizationService;
     this.strassenabschnittGISService = strassenabschnittGISService;
     this.inspektionsRouteGISService  = inspektionsRouteGISService;
     this.packageService = packageService;
     this.inspektionsRouteGISOverviewService = inspektionsRouteGISOverviewService;
     this.sessionService = sessionService;
     this.inspektionsRtStrAbschnitteService    = inspektionsRtStrAbschnitteService;
     this.inspektionsRouteStatusverlaufService = inspektionsRouteStatusverlaufService;
     this.inspektionsRouteLockingService       = inspektionsRouteLockingService;
     this.ereignisLogService  = ereignisLogService;
     this.checkInService      = checkInService;
     this.checkOutService     = checkOutService;
     this.geoJSONParseService = geoJSONParseService;
 }
Пример #2
0
 public PackageService(IServerConfigurationProvider serverConfigurationProvider,
                       IInspektionsRouteGISService inspektionsRouteGISService,
                       IInspektionsRouteGISOverviewService inspektionsRouteGISOverviewService,
                       ICheckOutsGISService checkOutsGISService,
                       ILocalizationService localizationService)
 {
     this.localizationService = localizationService;
     this.checkOutsGISService = checkOutsGISService;
     this.inspektionsRouteGISOverviewService = inspektionsRouteGISOverviewService;
     this.inspektionsRouteGISService         = inspektionsRouteGISService;
     this.serverConfigurationProvider        = serverConfigurationProvider;
 }
 public CheckOutRueckgaengigController(IInspektionsRouteGISOverviewService inspektionsRouteGISOverviewService)
 {
     this.inspektionsRouteGISOverviewService = inspektionsRouteGISOverviewService;
 }