2021-11-20 13:52:28 +01:00
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
namespace zero.Configuration;
|
|
|
|
|
|
|
|
|
|
public class IntegrationService : IntegrationsCollection, IIntegrationService
|
|
|
|
|
{
|
2021-11-23 22:56:22 +01:00
|
|
|
public IntegrationService(IStoreContext<Integration> context, ILogger<IntegrationsCollection> logger) : base(context, logger)
|
2021-11-20 13:52:28 +01:00
|
|
|
{
|
|
|
|
|
Options = new(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public interface IIntegrationService : IIntegrationsCollection { }
|