using VoidCat.Database; namespace VoidCat.Services.Abstractions; /// /// Factory class to access service provider implementations /// public interface IPaymentFactory { /// /// Create provider handler for specified service type /// /// /// ValueTask CreateProvider(PaywallService svc); }