示例#1
0
 public DynamicPropertyMetaDataResolver(
     IDynamicPropertySearchService searchService
     , IPlatformMemoryCache memoryCache)
 {
     _searchService = searchService;
     _memoryCache   = memoryCache;
 }
 public PlatformExportImportManager(
     UserManager <ApplicationUser> userManager
     , RoleManager <Role> roleManager
     , IPermissionsRegistrar permissionsProvider
     , ISettingsManager settingsManager
     , IDynamicPropertyService dynamicPropertyService
     , IDynamicPropertySearchService dynamicPropertySearchService
     , ILocalModuleCatalog moduleCatalog
     , IDynamicPropertyDictionaryItemsService dynamicPropertyDictionaryItemsService
     , IDynamicPropertyDictionaryItemsSearchService dynamicPropertyDictionaryItemsSearchService
     , IUserApiKeyService userApiKeyService
     , IUserApiKeySearchService userApiKeySearchService)
 {
     _dynamicPropertyService = dynamicPropertyService;
     _userManager            = userManager;
     _roleManager            = roleManager;
     _settingsManager        = settingsManager;
     _moduleCatalog          = moduleCatalog;
     _dynamicPropertyDictionaryItemsService       = dynamicPropertyDictionaryItemsService;
     _dynamicPropertyDictionaryItemsSearchService = dynamicPropertyDictionaryItemsSearchService;
     _permissionsProvider          = permissionsProvider;
     _dynamicPropertySearchService = dynamicPropertySearchService;
     _userApiKeyService            = userApiKeyService;
     _userApiKeySearchService      = userApiKeySearchService;
 }
示例#3
0
 public DynamicPropertyQueryHandler(IMapper mapper, ISearchPhraseParser searchPhraseParser, IDynamicPropertyService dynamicPropertyService, IDynamicPropertySearchService dynamicPropertySearchService, IDynamicPropertyDictionaryItemsSearchService dynamicPropertyDictionaryItemsSearchService)
 {
     _mapper                       = mapper;
     _searchPhraseParser           = searchPhraseParser;
     _dynamicPropertyService       = dynamicPropertyService;
     _dynamicPropertySearchService = dynamicPropertySearchService;
     _dynamicPropertyDictionaryItemsSearchService = dynamicPropertyDictionaryItemsSearchService;
 }
 public DynamicPropertiesController(IDynamicPropertyRegistrar dynamicPropertyRegistrar, IDynamicPropertyService dynamicPropertyService, IDynamicPropertySearchService dynamicPropertySearchService, IDynamicPropertyDictionaryItemsService dynamicPropertyDictionaryItemsService, IDynamicPropertyDictionaryItemsSearchService dynamicPropertyDictionaryItemsSearchService)
 {
     _dynamicPropertyService                      = dynamicPropertyService;
     _dynamicPropertySearchService                = dynamicPropertySearchService;
     _dynamicPropertyDictionaryItemsService       = dynamicPropertyDictionaryItemsService;
     _dynamicPropertyDictionaryItemsSearchService = dynamicPropertyDictionaryItemsSearchService;
     _dynamicPropertyRegistrar                    = dynamicPropertyRegistrar;
 }
 public DemoMemberDocumentBuilder(
     IMemberService memberService,
     IDynamicPropertySearchService dynamicPropertySearchService,
     IUserGroupEvaluator userGroupEvaluator
     )
     : base(memberService, dynamicPropertySearchService)
 {
     _userGroupEvaluator = userGroupEvaluator;
 }
 public CustomerDataExporter(ICustomerExportPagedDataSourceFactory customerExportPagedDataSourceFactory, IExportWriterFactory exportWriterFactory, IOptions <PlatformOptions> platformOptions,
                             IDynamicPropertySearchService dynamicPropertySearchService, IBlobStorageProvider blobStorageProvider, IBlobUrlResolver blobUrlResolver)
 {
     _customerExportPagedDataSourceFactory = customerExportPagedDataSourceFactory;
     _exportWriterFactory          = exportWriterFactory;
     _platformOptions              = platformOptions.Value;
     _blobStorageProvider          = blobStorageProvider;
     _dynamicPropertySearchService = dynamicPropertySearchService;
     _blobUrlResolver              = blobUrlResolver;
 }
 public PlatformExportImportManager(UserManager <ApplicationUser> userManager, RoleManager <Role> roleManager, IKnownPermissionsProvider permissionsProvider, ISettingsManager settingsManager,
                                    IDynamicPropertyService dynamicPropertyService, IDynamicPropertySearchService dynamicPropertySearchService, ILocalModuleCatalog moduleCatalog, IPlatformMemoryCache memoryCache)
 {
     _dynamicPropertyService       = dynamicPropertyService;
     _userManager                  = userManager;
     _roleManager                  = roleManager;
     _settingsManager              = settingsManager;
     _moduleCatalog                = moduleCatalog;
     _memoryCache                  = memoryCache;
     _permissionsProvider          = permissionsProvider;
     _dynamicPropertySearchService = dynamicPropertySearchService;
 }
示例#8
0
 public DynamicPropertyResolverService(IDynamicPropertySearchService dynamicPropertySearchService)
 {
     _dynamicPropertySearchService = dynamicPropertySearchService;
 }
 public MemberDocumentBuilder(IMemberService memberService, IDynamicPropertySearchService dynamicPropertySearchService)
 {
     _memberService = memberService;
     _dynamicPropertySearchService = dynamicPropertySearchService;
 }
 public static CustomerImportPagedDataSourceFactory GetCustomerImportPagedDataSourceFactory(IBlobStorageProvider blobStorageProvider, IDynamicPropertySearchService dynamicPropertySearchService,
                                                                                            IDynamicPropertyDictionaryItemsSearchService dynamicPropertyDictionaryItemsSearchService)
 {
     return(new CustomerImportPagedDataSourceFactory(blobStorageProvider, dynamicPropertySearchService, dynamicPropertyDictionaryItemsSearchService));
 }