12 lines
325 B
C#
12 lines
325 B
C#
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace zero.Mapper;
|
|
|
|
internal class ZeroMapperModule : ZeroModule
|
|
{
|
|
public override void ConfigureServices(IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
services.AddScoped<IZeroMapper, ZeroMapper>();
|
|
}
|
|
} |