12 lines
332 B
C#
12 lines
332 B
C#
using CuentasCobrar.INFRASTRUCTURE.Mappings;
|
|
|
|
namespace CuentasCobrar.API.Installers
|
|
{
|
|
public class AutoMapperInstaller : IInstaller
|
|
{
|
|
public void InstallServices(IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
services.AddAutoMapper(typeof(AutoMapperProfile));
|
|
}
|
|
}
|
|
}
|