protected override IGetCacheVersionService RealCreate() { IConfigurationService configurationService = ConfigurationServiceFactory.Get(); GetCacheVersionService getCacheVersionService = new GetCacheVersionService(configurationService); return(getCacheVersionService); }
protected override IWorkflowContextService RealCreate() { var paUserRepository = PAUserRepositoryFactory.Get(); var configurationService = ConfigurationServiceFactory.Get(); WorkflowContextService workflowContextService = new WorkflowContextService(configurationService, paUserRepository); return(workflowContextService); }
protected override IPluginContextService RealCreate() { var paUserRepository = PAUserRepositoryFactory.Get(); var configurationService = ConfigurationServiceFactory.Get(); PluginContextService pluginContextService = new PluginContextService(configurationService, paUserRepository); return(pluginContextService); }
protected override ILanguageTranslateService RealCreate() { //throw new Exception(); IPAWebResourceRepository paWebResourceRepository = PAWebResourceRepositoryFactory.Get(); IConfigurationService configurationService = ConfigurationServiceFactory.Get(); LanguageTranslateService languageTranslateService = new LanguageTranslateService(paWebResourceRepository, configurationService); return(languageTranslateService); }