Esempio n. 1
0
 public StrassenabschnittImportService(
     ITransactionScopeProvider transactionScopeProvider,
     IEntityServiceMappingEngine entityServiceMappingEngine,
     ISecurityService securityService,
     IFahrbahnZustandService fahrbahnZustandService,
     IHistorizationService historizationService)
     : base(transactionScopeProvider, entityServiceMappingEngine, securityService, historizationService)
 {
     this.fahrbahnZustandService = fahrbahnZustandService;
 }
Esempio n. 2
0
 public ZustandsabschnittController(
     IZustandsabschnittService zustandsabschnittService,
     IStrassenabschnittService strassenabschnittService,
     IMassnahmenvorschlagKatalogService massnahmenvorschlagKatalogService,
     ITrottoirZustandService trottoirZustandServiceBase,
     IFahrbahnZustandService fahrbahnZustandServiceBase
     )
 {
     this.zustandsabschnittService          = zustandsabschnittService;
     this.strassenabschnittService          = strassenabschnittService;
     this.massnahmenvorschlagKatalogService = massnahmenvorschlagKatalogService;
     this.trottoirZustandServiceBase        = trottoirZustandServiceBase;
     this.fahrbahnZustandServiceBase        = fahrbahnZustandServiceBase;
 }
Esempio n. 3
0
 public StrassenabschnittService(
     ITransactionScopeProvider transactionScopeProvider,
     IEntityServiceMappingEngine entityServiceMappingEngine,
     ISecurityService securityService,
     IFahrbahnZustandService fahrbahnZustandService,
     IHistorizationService historizationService,
     IMassnahmenvorschlagCopyService massnahmenvorschlagCopyService,
     ILocalizationService localizationService)
     : base(transactionScopeProvider, entityServiceMappingEngine, securityService, historizationService)
 {
     this.fahrbahnZustandService         = fahrbahnZustandService;
     this.massnahmenvorschlagCopyService = massnahmenvorschlagCopyService;
     this.localizationService            = localizationService;
 }
Esempio n. 4
0
 public ZustaendeUndMassnahmenvorschlaegeController(IZustandsabschnittService zustandsabschnittService,
                                                    IMassnahmenvorschlagKatalogService massnahmenvorschlagKatalogService, ILocalizationService localizationService, IFahrbahnZustandService fahrbahnZustandService,
                                                    ITrottoirZustandService trottoirZustandService)
     : base(massnahmenvorschlagKatalogService, fahrbahnZustandService, trottoirZustandService)
 {
     this.localizationService      = localizationService;
     this.zustandsabschnittService = zustandsabschnittService;
 }