Esempio n. 1
0
 public SupervisionPlanLegacyController(ISPAdministrationService administrationService, ICatalogService catalogService, ISpNotificationService notificationService)
 {
     _spAdministrationService = administrationService;
     _catalogService          = catalogService;
     _notificationService     = notificationService;
     _viewModelMapperHelper   = new ViewModelMapperHelper(_spAdministrationService, _catalogService, _notificationService);
 }
 public SupervisionPlanController(
     ISupervisionPlanService supervisionPlanService,
     ICatalogService catalogService,
     ISPAdministrationService spAdministrationService,
     ISpNotificationService notificationService)
 {
     _supervisionPlanService = supervisionPlanService;
     _catalogService         = catalogService;
     _viewModelMapperHelper  = new ViewModelMapperHelper(
         spAdministrationService,
         catalogService,
         notificationService);
 }
 public ViewModelMapperHelper(ISPAdministrationService spAdministrationService, ICatalogService catalogService, ISpNotificationService spNotificationService)
 {
     _catalogService          = catalogService;
     _spAdministrationService = spAdministrationService;
     _spNotificationService   = spNotificationService;
 }