18 lines
537 B
C#
18 lines
537 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, ICollectionContext context, ILogger<IntegrationsCollection> logger, ICollectionInterceptorHandler interceptorHandler = null) : base(context, options, logger)
|
|
{
|
|
OnlyActive = true;
|
|
}
|
|
}
|
|
|
|
|
|
public interface IIntegrationService : IIntegrationsCollection { }
|
|
}
|