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