18 lines
469 B
C#
18 lines
469 B
C#
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<NotSignedContractEmployeesQueryHandler>();
|
|
services.AddTransient<IGetWorkshopWithRollCallHandler, GetWorkshopWithRollCallHandler>();
|
|
}
|
|
|
|
|
|
}
|
|
}
|