using Microsoft.Extensions.DependencyInjection; using Postall.Domain; using Postall.Domain.Services.Contracts; using Postall.Infra.Services; namespace BaseDomain.Extensions { public static class ServiceCollectionExtensions { public static IServiceCollection AddYouTubeServices(this IServiceCollection services) { services.AddHttpContextAccessor(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); return services; } } }