14 lines
249 B
C#
14 lines
249 B
C#
|
|
|
|
namespace Indotalent.Infrastructure.File;
|
|
|
|
public static class DI
|
|
{
|
|
public static IServiceCollection AddFileService(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<FileStorageService>();
|
|
|
|
return services;
|
|
}
|
|
}
|