using Bit.Core.Billing.Payment.Clients; using Bit.Core.Billing.Payment.Commands; using Bit.Core.Billing.Payment.Queries; using Microsoft.Extensions.DependencyInjection; namespace Bit.Core.Billing.Payment; public static class Registrations { public static void AddPaymentOperations(this IServiceCollection services) { // Commands services.AddTransient(); services.AddTransient(); services.AddTransient(); services.AddTransient(); services.AddTransient(); // Queries services.AddTransient(); services.AddTransient(); services.AddTransient(); } }