using Microsoft.Extensions.Logging; namespace zero.Configuration; public class IntegrationService : IntegrationsCollection, IIntegrationService { public IntegrationService(IStoreContext context, ILogger logger) : base(context, logger) { Options = new(false); } } public interface IIntegrationService : IIntegrationsCollection { }