feat(adm-009): TipoDeIvaRepository + IngresosBrutosRepository Dapper implementations + DI registration

This commit is contained in:
2026-04-17 18:23:10 -03:00
parent 8e2d6bfb14
commit 83dd680fa3
5 changed files with 655 additions and 6 deletions

View File

@@ -35,6 +35,8 @@ public static class DependencyInjection
services.AddScoped<IMedioRepository, MedioRepository>();
services.AddScoped<ISeccionRepository, SeccionRepository>();
services.AddScoped<IPuntoDeVentaRepository, PuntoDeVentaRepository>();
services.AddScoped<ITipoDeIvaRepository, TipoDeIvaRepository>();
services.AddScoped<IIngresosBrutosRepository, IngresosBrutosRepository>();
// JWT Options — bound lazily via IOptions so tests can override via ConfigureWebHost
services.Configure<JwtOptions>(configuration.GetSection("Jwt"));