better store ops

This commit is contained in:
2021-12-28 11:33:41 +01:00
parent 67f0b336cd
commit b961af1eba
7 changed files with 43 additions and 27 deletions
@@ -9,10 +9,10 @@ public class IntegrationStore : IIntegrationStore
protected IIntegrationTypeService IntegrationTypes { get; private set; }
public IntegrationStore(IStoreContext context, IIntegrationTypeService integrationTypes)
public IntegrationStore(IStoreOperationsWithInactive operations, IIntegrationTypeService integrationTypes)
{
IntegrationTypes = integrationTypes;
Operations = new StoreOperations(context.Context, context.Interceptors, context.Options, new StoreConfig() { IncludeInactive = true });
Operations = operations;
}