Esempio n. 1
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;
 }
Esempio n. 2
0
 public InspektionsRouteGISOverviewService(
     ITransactionScopeProvider transactionScopeProvider,
     IEntityServiceMappingEngine entityServiceMappingEngine,
     ISecurityService securityService,
     IHistorizationService historizationService,
     ILocalizationService localizationService,
     IInspektionsRouteStatusverlaufService inspektionsRouteStatusverlaufService,
     IInspektionsRouteLockingService inspektionsRouteLockingService,
     ICheckOutsGISService checkOutsGISService,
     ITimeService timeService
     )
     : base(transactionScopeProvider, entityServiceMappingEngine, securityService, historizationService)
 {
     this.localizationService = localizationService;
     this.inspektionsRouteStatusverlaufService = inspektionsRouteStatusverlaufService;
     this.inspektionsRouteLockingService       = inspektionsRouteLockingService;
     this.checkOutsGISService = checkOutsGISService;
     this.timeService         = timeService;
 }
Esempio n. 3
0
        public CheckInService(
            IInspektionsRouteGISService inspektionsRouteGISService,
            IInspektionsRouteStatusverlaufService inspektionsRouteStatusverlaufService,

            IZustandsabschnittGISDTOService zustandsabschnittGISDTOService,
            IFahrbahnZustandDTOService fahrbahnZustandDTOService,
            ICheckOutsGISService checkOutsGISService,
            IEreignisLogService ereignisLogService,
            ITimeService timeService
            )
        {
            this.inspektionsRouteGISService           = inspektionsRouteGISService;
            this.inspektionsRouteStatusverlaufService = inspektionsRouteStatusverlaufService;

            this.zustandsabschnittGISDTOService = zustandsabschnittGISDTOService;
            this.fahrbahnZustandDTOService      = fahrbahnZustandDTOService;
            this.checkOutsGISService            = checkOutsGISService;
            this.ereignisLogService             = ereignisLogService;
            this.timeService = timeService;
        }