RollCall Control For client in admin - checkoutPrint change

This commit is contained in:
SamSys
2024-12-10 03:31:35 +03:30
parent e2494a48a5
commit f626bbe791
114 changed files with 20815 additions and 1238 deletions

View File

@@ -0,0 +1,17 @@
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>();
}
}
}