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

12 lines
249 B
C#

namespace Indotalent.Infrastructure.Logging;
public static class DI
{
public static IServiceCollection AddLoggingService(this IServiceCollection services)
{
services.AddScoped<LoggingService>();
return services;
}
}