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