Files
mixtape/zero.Core/Integrations/IntegrationService.cs
T
2021-01-15 13:56:50 +01:00

15 lines
518 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) { }
}
public interface IIntegrationService : IIntegrationsCollection { }
}