public SolutionComponentController(IWebAppContext appContext , ISolutionService solutionService , ISolutionComponentService solutionComponentService) : base(appContext, solutionService) { _solutionComponentService = solutionComponentService; }
public DuplicateRuleFinder(IAppContext appContext , IDuplicateRuleRepository duplicateRuleRepository , ISolutionComponentService solutionComponentService) { _appContext = appContext; _duplicateRuleRepository = duplicateRuleRepository; _solutionComponentService = solutionComponentService; _cacheService = new Caching.CacheManager <DuplicateRule>(DuplicateRuleCache.CacheKey(_appContext), _appContext.PlatformSettings.CacheEnabled); }
public WebResourceCreater(IAppContext appContext, IWebResourceRepository webResourceRepository , ILocalizedLabelBatchBuilder localizedLabelService , ISolutionComponentService solutionComponentService) { _webResourceRepository = webResourceRepository; _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _appContext = appContext; _cacheService = new Caching.CacheManager <Domain.WebResource>(_appContext.OrganizationUniqueName + "webresource", _appContext.PlatformSettings.CacheEnabled); }
public EntityPluginDeleter(IAppContext appContext , IEntityPluginRepository entityPluginRepository , ISolutionComponentService solutionComponentService , IDependencyService dependencyService) { _entityPluginRepository = entityPluginRepository; _solutionComponentService = solutionComponentService; _dependencyService = dependencyService; _cacheService = new Caching.CacheManager <EntityPlugin>(EntityPluginCache.GetCacheKey(appContext), EntityPluginCache.BuildKey); }
public DuplicateRuleFinder(IAppContext appContext , IDuplicateRuleRepository duplicateRuleRepository //, ILocalizedLabelService localizedLabelService , ISolutionComponentService solutionComponentService) { _appContext = appContext; _duplicateRuleRepository = duplicateRuleRepository; //_localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _cacheService = new Caching.CacheManager <DuplicateRule>(DuplicateRuleCache.CacheKey(_appContext), DuplicateRuleCache.BuildKey); }
public WorkFlowCreater(IAppContext appContext , IWorkFlowRepository workFlowRepository , ILocalizedLabelService localizedLabelService , ISolutionComponentService solutionComponentService , IWorkFlowDependency dependencyService) { _appContext = appContext; _workFlowRepository = workFlowRepository; _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _dependencyService = dependencyService; }
public WorkFlowDeleter(IWorkFlowRepository workFlowRepository , ILocalizedLabelService localizedLabelService , ISolutionComponentService solutionComponentService , IWorkFlowDependency dependencyService , IEventPublisher eventPublisher) { _workFlowRepository = workFlowRepository; _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _dependencyService = dependencyService; _eventPublisher = eventPublisher; }
public EntityPluginCreater(IAppContext appContext , IEntityPluginRepository entityPluginRepository , ISolutionComponentService solutionComponentService , IEntityPluginFileProvider entityPluginFileProvider , IDependencyService dependencyService) { _appContext = appContext; _entityPluginRepository = entityPluginRepository; _solutionComponentService = solutionComponentService; _entityPluginFileProvider = entityPluginFileProvider; _dependencyService = dependencyService; _cacheService = new Caching.CacheManager <EntityPlugin>(EntityPluginCache.GetCacheKey(appContext), _appContext.PlatformSettings.CacheEnabled); }
public OptionSetCreater(IAppContext appContext , IOptionSetRepository optionSetRepository , ISolutionComponentService solutionComponentService , IOptionSetDetailCreater optionSetDetailCreater , ILocalizedLabelBatchBuilder localizedLabelService) { _appContext = appContext; _optionSetRepository = optionSetRepository; _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _optionSetDetailCreater = optionSetDetailCreater; _cacheService = new Caching.CacheManager <Domain.OptionSet>(_appContext.OrganizationUniqueName + ":optionsets", _appContext.PlatformSettings.CacheEnabled); }
public HomeController(IWebAppContext appContext , ISolutionService solutionService , IEntityFinder entityFinder , IOptionSetFinder optionSetFinder , IEntityPluginFinder entityPluginFinder , IWorkFlowFinder workFlowFinder , ISolutionComponentService solutionComponentService) : base(appContext, solutionService) { _entityFinder = entityFinder; _optionSetFinder = optionSetFinder; _entityPluginFinder = entityPluginFinder; _workFlowFinder = workFlowFinder; _solutionComponentService = solutionComponentService; }
public WebResourceDeleter(IAppContext appContext , IWebResourceRepository webResourceRepository , ILocalizedLabelService localizedLabelService , ISolutionComponentService solutionComponentService , IDependencyService dependencyService , IDependencyChecker dependencyChecker) { _appContext = appContext; _webResourceRepository = webResourceRepository; _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _dependencyService = dependencyService; _dependencyChecker = dependencyChecker; _cacheService = new Caching.CacheManager <Domain.WebResource>(_appContext.OrganizationUniqueName + "webresource"); }
public SerialNumberRuleDeleter(IAppContext appContext , ISerialNumberRuleRepository serialNumberRuleRepository , ILocalizedLabelService localizedLabelService , ISolutionComponentService solutionComponentService , ISerialNumberDependency dependencyService , IEntityPluginDeleter entityPluginDeleter) { _appContext = appContext; _serialNumberRuleRepository = serialNumberRuleRepository; _loc = _appContext.GetFeature <ILocalizedTextProvider>(); _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _dependencyService = dependencyService; _entityPluginDeleter = entityPluginDeleter; _cacheService = new Caching.CacheManager <Domain.SerialNumberRule>(SerialNumberRuleCache.CacheKey(_appContext), _appContext.PlatformSettings.CacheEnabled); }
public ReportService(IAppContext appContext , IReportRepository reportRepository , ILocalizedLabelService localizedLabelService , ISolutionComponentService solutionComponentService , IRoleObjectAccessService roleObjectAccessService , IDependencyService dependencyService , IEventPublisher eventPublisher) { _appContext = appContext; _reportRepository = reportRepository; _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _roleObjectAccessService = roleObjectAccessService; _dependencyService = dependencyService; _eventPublisher = eventPublisher; }
public SystemFormCreater(IAppContext appContext , ISystemFormRepository systemFormRepository , ILocalizedLabelBatchBuilder localizedLabelService , ISolutionComponentService solutionComponentService , IFormService formService , ISystemFormDependency dependencyService , IDefaultSystemFormProvider defaultSystemFormProvider) { _appContext = appContext; _systemFormRepository = systemFormRepository; _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _formService = formService; _dependencyService = dependencyService; _defaultSystemFormProvider = defaultSystemFormProvider; _cacheService = new Caching.CacheManager <Domain.SystemForm>(_appContext.OrganizationUniqueName + ":systemforms", _appContext.PlatformSettings.CacheEnabled); }
public EntityDeleter(IAppContext appContext , IEntityRepository entityRepository , ISolutionComponentService solutionComponentService , ILocalizedLabelService localizedLabelService , IDependencyService dependencyService , IDependencyChecker dependencyChecker , IEnumerable <ICascadeDelete <Domain.Entity> > cascadeDeletes ) { _appContext = appContext; _entityRepository = entityRepository; _localizedLabelService = localizedLabelService; _cacheService = new Caching.CacheManager <Domain.Entity>(_appContext.OrganizationUniqueName + ":entities", EntityCache.BuildKey); _solutionComponentService = solutionComponentService; _dependencyService = dependencyService; _dependencyChecker = dependencyChecker; _cascadeDeletes = cascadeDeletes; }
public EntityCreater(IAppContext appContext , IEntityRepository entityRepository , ILocalizedLabelBatchBuilder localizedLabelService , ISolutionComponentService solutionComponentService , IDefaultAttributeProvider defaultAttributeProvider , IAttributeCreater attributeCreater , IEventPublisher eventPublisher ) { _appContext = appContext; _loc = _appContext.GetFeature <ILocalizedTextProvider>(); _entityRepository = entityRepository; _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _defaultAttributeProvider = defaultAttributeProvider; _attributeCreater = attributeCreater; _cacheService = new Caching.CacheManager <Domain.Entity>(_appContext.OrganizationUniqueName + ":entities", _appContext.PlatformSettings.CacheEnabled); _eventPublisher = eventPublisher; }
public OptionSetDeleter(IAppContext appContext , IOptionSetRepository optionSetRepository , ISolutionComponentService solutionComponentService , IOptionSetDetailDeleter optionSetDetailDeleter , ILocalizedLabelService localizedLabelService , IDependencyService dependencyService , IDependencyChecker dependencyChecker , IEnumerable <ICascadeDelete <Domain.OptionSet> > cascadeDeletes) { _appContext = appContext; _optionSetRepository = optionSetRepository; _loc = _appContext.GetFeature <ILocalizedTextProvider>(); _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _optionSetDetailDeleter = optionSetDetailDeleter; _dependencyService = dependencyService; _dependencyChecker = dependencyChecker; _cascadeDeletes = cascadeDeletes; _cacheService = new Caching.CacheManager <Domain.OptionSet>(_appContext.OrganizationUniqueName + ":optionsets", _appContext.PlatformSettings.CacheEnabled); }
public SystemFormDeleter(IAppContext appContext , ISystemFormRepository systemFormRepository , ILocalizedLabelService localizedLabelService , ISolutionComponentService solutionComponentService , IFormService formService , ISystemFormDependency dependencyService , IDependencyChecker dependencyChecker , IEventPublisher eventPublisher , IEnumerable <ICascadeDelete <Domain.SystemForm> > cascadeDeletes) { _appContext = appContext; _systemFormRepository = systemFormRepository; _localizedLabelService = localizedLabelService; _solutionComponentService = solutionComponentService; _formService = formService; _dependencyService = dependencyService; _dependencyChecker = dependencyChecker; _eventPublisher = eventPublisher; _cascadeDeletes = cascadeDeletes; _cacheService = new Caching.CacheManager <Domain.SystemForm>(_appContext.OrganizationUniqueName + ":systemforms", SystemFormCache.BuildKey); }