feat(infrastructure): RubroRepository Dapper + DI + integration tests (CAT-001)

This commit is contained in:
2026-04-18 20:00:51 -03:00
parent d9fc9a2867
commit f8e9d18379
3 changed files with 687 additions and 0 deletions

View File

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