Files
mixtape/zero.Core/Integrations/IntegrationService.cs
T

18 lines
537 B
C#
Raw Normal View History

2021-01-15 13:56:50 +01:00
using Microsoft.Extensions.Logging;
using zero.Core.Collections;
2021-01-13 23:50:03 +01:00
using zero.Core.Options;
namespace zero.Core.Integrations
{
2021-01-15 13:56:50 +01:00
public class IntegrationService : IntegrationsCollection, IIntegrationService
2021-01-13 23:50:03 +01:00
{
2021-10-13 12:47:18 +02:00
public IntegrationService(IZeroOptions options, ICollectionContext context, ILogger<IntegrationsCollection> logger, ICollectionInterceptorHandler interceptorHandler = null) : base(context, options, logger)
2021-09-09 14:09:16 +02:00
{
OnlyActive = true;
}
2021-01-13 23:50:03 +01:00
}
2021-01-15 13:56:50 +01:00
public interface IIntegrationService : IIntegrationsCollection { }
2021-01-13 23:50:03 +01:00
}