using Microsoft.Extensions.DependencyInjection; using Query.AdminReports.Handlers; using Query.ClientReports.Handler; namespace Query.Bootstrapper { public class QueryBootstrapper { public static void Configure(IServiceCollection services) { services.AddTransient(); services.AddTransient(); } } }