Files
blazor-hrm/Infrastructure/BackgroundJob/DI.cs
T
2026-07-21 14:08:10 +07:00

12 lines
267 B
C#

namespace Indotalent.Infrastructure.BackgroundJob;
public static class DI
{
public static IServiceCollection AddBackgroundJobService(this IServiceCollection services)
{
services.AddScoped<BackgroundJobService>();
return services;
}
}