public UserStore( IUnitOfWorkManager unitOfWorkManager, IRepository <User, long> userRepository, IRepository <Role> roleRepository, IAsyncQueryableExecuter asyncQueryableExecuter, IRepository <UserRole, long> userRoleRepository, IRepository <UserLogin, long> userLoginRepository, IRepository <UserClaim, long> userClaimRepository, IRepository <UserPermissionSetting, long> userPermissionSettingRepository, IRepository <UserOrganizationUnit, long> userOrganizationUnitRepository, IRepository <OrganizationUnitRole, long> organizationUnitRoleRepository) : base( unitOfWorkManager, userRepository, roleRepository, asyncQueryableExecuter, userRoleRepository, userLoginRepository, userClaimRepository, userPermissionSettingRepository, userOrganizationUnitRepository, organizationUnitRoleRepository) { }
public SearchedAndPagedAndSortedOperation() { AsyncQueryableExecuter = DefaultAsyncQueryableExecuter.Instance; }
public EntityDynamicParameterStore(IRepository <EntityDynamicParameter> entityDynamicParameterRepository, IAsyncQueryableExecuter asyncQueryableExecuter) { _entityDynamicParameterRepository = entityDynamicParameterRepository; _asyncQueryableExecuter = asyncQueryableExecuter; }
/// <summary> /// Initializes a new instance of the <see cref="CorsPolicyService"/> class. /// </summary> /// <param name="repository">The Repository of Client</param> /// <param name="queryableExecuter">The Async Queryable Executer</param> public CorsPolicyService(IRepository <Client, int> repository, IAsyncQueryableExecuter queryableExecuter) { _repository = repository; _asyncQueryableExecuter = queryableExecuter; }
protected AbpProjectNameAppServiceBase() { LocalizationSourceName = AbpProjectNameConsts.LocalizationSourceName; AsyncQueryableExecuter = NullAsyncQueryableExecuter.Instance; }
public WebhookSubscriptionsStore(IRepository <WebhookSubscriptionInfo, Guid> webhookSubscriptionRepository, IAsyncQueryableExecuter asyncQueryableExecuter) { _webhookSubscriptionRepository = webhookSubscriptionRepository; _asyncQueryableExecuter = asyncQueryableExecuter; }
public CustomerStore(IUnitOfWorkManager unitOfWorkManager, IRepository <Customer, long> customerRepository, IAsyncQueryableExecuter asyncQueryableExecuter, IRepository <CustomerLogin, long> customerLoginRepository, IRepository <CustomerClaim, long> customerClaimRepository) : base(unitOfWorkManager, customerRepository, asyncQueryableExecuter, customerLoginRepository, customerClaimRepository) { }
public AbpPersistenceProvider(IRepository <PersistedEvent, Guid> eventRepository, IRepository <PersistedExecutionPointer, string> executionPointerRepository, IRepository <PersistedWorkflow, Guid> workflowRepository, IRepository <PersistedSubscription, Guid> eventSubscriptionRepository, IGuidGenerator guidGenerator, IAsyncQueryableExecuter asyncQueryableExecuter, IRepository <PersistedExecutionError, Guid> executionErrorRepository, IRepository <PersistedWorkflowDefinition, string> workflowDefinitionRepository) { _eventRepository = eventRepository; _executionPointerRepository = executionPointerRepository; _workflowRepository = workflowRepository; _eventSubscriptionRepository = eventSubscriptionRepository; _guidGenerator = guidGenerator; _asyncQueryableExecuter = asyncQueryableExecuter; _executionErrorRepository = executionErrorRepository; _workflowDefinitionRepository = workflowDefinitionRepository; }
public GeneralTreeManager(IRepository <TEntity, long> repository) { this.repository = repository; base.LocalizationSourceName = GeneralTreeConsts.LocalizationSourceName; this.AsyncQueryableExecuter = NullAsyncQueryableExecuter.Instance; }
public DynamicEntityPropertyStore(IRepository <DynamicEntityProperty> dynamicEntityPropertyRepository, IAsyncQueryableExecuter asyncQueryableExecuter) { _dynamicEntityPropertyRepository = dynamicEntityPropertyRepository; _asyncQueryableExecuter = asyncQueryableExecuter; }
public AbpWorkflowManager(WorkflowDefinitionManager workflowDefinitionManager, IWorkflowHost workflowHost, IWorkflowController workflowService, IWorkflowRegistry registry, IAbpPersistenceProvider workflowStore, ISearchIndex searchService, IDefinitionLoader definitionLoader, IRepository <PersistedWorkflowDefinition, string> workflowDefinitionRepository, IAsyncQueryableExecuter asyncQueryableExecuter) { _workflowDefinitionManager = workflowDefinitionManager; _workflowHost = workflowHost; _workflowService = workflowService; _registry = registry; PersistenceProvider = workflowStore; _searchService = searchService; _definitionLoader = definitionLoader; _workflowDefinitionRepository = workflowDefinitionRepository; _stepBodys = _workflowDefinitionManager.GetAllStepBodys(); AsyncQueryableExecuter = asyncQueryableExecuter; }
public ProductAppService(IRepository <Product, Guid> productRepository, IAsyncQueryableExecuter asyncExecuter) { _productRepository = productRepository; _asyncExecuter = asyncExecuter; }
protected SampleCrudAppServiceBase(IRepository <TEntity, TPrimaryKey> repository) { Repository = repository; AsyncQueryableExecuter = NullAsyncQueryableExecuter.Instance; }
/// <summary> /// Initializes a new instance of the <see cref="ClientStore"/> class. /// </summary> /// <param name="repository">The Repository of Client</param> /// <param name="queryableExecuter">The Async Queryable Executer</param> public ClientStore(IRepository <Entities.Client, int> repository, IAsyncQueryableExecuter queryableExecuter) { _repository = repository; _asyncQueryableExecuter = queryableExecuter; }
public DynamicPropertyValueStore(IRepository <DynamicPropertyValue> dynamicPropertyValuesRepository, IAsyncQueryableExecuter asyncQueryableExecuter) { _dynamicPropertyValuesRepository = dynamicPropertyValuesRepository; _asyncQueryableExecuter = asyncQueryableExecuter; }
protected EntitySnapshotManagerBase(IRepository <EntityChange, long> entityChangeRepository) { EntityChangeRepository = entityChangeRepository; AsyncQueryableExecuter = NullAsyncQueryableExecuter.Instance; }
public SearchedAndPagedAndSortedOperation( IAsyncQueryableExecuter asyncQueryableExecuter ) { AsyncQueryableExecuter = asyncQueryableExecuter; }