14 lines
388 B
C#
14 lines
388 B
C#
|
|
using Microsoft.Extensions.Logging;
|
||
|
|
|
||
|
|
namespace zero.Configuration;
|
||
|
|
|
||
|
|
public class IntegrationService : IntegrationsCollection, IIntegrationService
|
||
|
|
{
|
||
|
|
public IntegrationService(ICollectionContext<Integration> context, ILogger<IntegrationsCollection> logger) : base(context, logger)
|
||
|
|
{
|
||
|
|
Options = new(false);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public interface IIntegrationService : IIntegrationsCollection { }
|