using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Timeline.Services.User.Avatar; namespace Timeline.Services.User { public static class UserServicesServiceCollectionExtensions { public static IServiceCollection AddUserServices(this IServiceCollection services) { services.TryAddTransient(); services.TryAddScoped(); services.TryAddScoped(); services.TryAddScoped(); services.TryAddScoped(); services.AddUserAvatarServices(); return services; } } }