using Microsoft.Extensions.Logging; using zero.Core.Collections; using zero.Core.Options; namespace zero.Core.Integrations { public class IntegrationService : IntegrationsCollection, IIntegrationService { public IntegrationService(IZeroOptions options, ICollectionContext context, ILogger logger, ICollectionInterceptorHandler interceptorHandler = null) : base(context, options, logger) { OnlyActive = true; } } public interface IIntegrationService : IIntegrationsCollection { } }