Files
mixtape/zero.Core/Integrations/IntegrationService.cs
T
2021-09-09 14:09:16 +02:00

18 lines
551 B
C#

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, IZeroContext context, ILogger<IntegrationsCollection> logger, ICollectionInterceptorHandler interceptorHandler = null) : base(context, options, logger, interceptorHandler)
{
OnlyActive = true;
}
}
public interface IIntegrationService : IIntegrationsCollection { }
}