TFS_ANTIGUO/TPAtesa_CuentasCobrar/CuentasCobrar.API/Installers/AutoMapperInstaller.cs

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));
}
}
}