fix for collection base

This commit is contained in:
2021-09-09 14:09:16 +02:00
parent 508a85d555
commit 12fe7f896c
3 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -6,7 +6,10 @@ namespace zero.Core.Integrations
{
public class IntegrationService : IntegrationsCollection, IIntegrationService
{
public IntegrationService(IZeroOptions options, IZeroContext context, ILogger<IntegrationsCollection> logger, ICollectionInterceptorHandler interceptorHandler = null) : base(context, options, logger, interceptorHandler) { }
public IntegrationService(IZeroOptions options, IZeroContext context, ILogger<IntegrationsCollection> logger, ICollectionInterceptorHandler interceptorHandler = null) : base(context, options, logger, interceptorHandler)
{
OnlyActive = true;
}
}