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