feat(infrastructure): ProductTypeRepository Dapper + DI wiring (PRD-001)

CRUD + paginado con filtros sobre dbo.ProductType; history temporal verificada en tests.
11 integration tests nuevos, suite total 935 GREEN.
This commit is contained in:
2026-04-19 09:49:08 -03:00
parent 5c8f19bf39
commit 936d1dc353
3 changed files with 448 additions and 0 deletions

View File

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