using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; using PoweredSoft.DynamicQuery.Core; using System; using System.Collections.Generic; using System.Text; namespace PoweredSoft.DynamicQuery { public static class ServiceCollectionExtensions { public static IServiceCollection AddPoweredSoftDynamicQuery(this IServiceCollection services) { services.TryAddTransient(); services.TryAddTransient(); services.TryAddTransient(); services.TryAddTransient(); services.TryAddTransient(); services.TryAddTransient(); services.TryAddTransient(); services.TryAddTransient(); return services; } } }