using Microsoft.Extensions.DependencyInjection; namespace Timeline.Services.Mapper { public static class MapperServiceCollectionExtensions { public static void AddMappers(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); } } }