15 lines
291 B
C#
15 lines
291 B
C#
|
|
using FileService.Application.UploadFile;
|
|
using IM.Commons;
|
|
|
|
namespace FileService.WebApi
|
|
{
|
|
public class ModueInit : IModuleInitializer
|
|
{
|
|
public void Initialize(IServiceCollection services)
|
|
{
|
|
services.AddScoped<UploadFileService>();
|
|
}
|
|
}
|
|
}
|