using zero.Core.Entities; using zero.Core.Integrations; namespace zero.Core.Options { public class IntegrationOptions : ZeroBackofficeCollection, IZeroCollectionOptions { public void Add() where T : IIntegrationType, new() { Items.Add(new T()); } } }