12 lines
267 B
C#
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;
|
|
}
|
|
}
|