Add Document Service in API
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 3m9s

This commit is contained in:
Leandro Hernan Rojas 2025-04-03 21:49:59 -03:00
parent 8ed080db2e
commit cedaeb3888

View File

@ -35,6 +35,9 @@ builder.Services.AddScoped<ITicketRepository, TicketRepository>();
builder.Services.AddScoped<ITicketDom, TicketService>(); builder.Services.AddScoped<ITicketDom, TicketService>();
builder.Services.AddScoped<IPhSAccountTypeRepository, PhSAccountTypeRepository>(); builder.Services.AddScoped<IPhSAccountTypeRepository, PhSAccountTypeRepository>();
builder.Services.AddScoped<IAccountTypeDom, AccountTypeService>(); builder.Services.AddScoped<IAccountTypeDom, AccountTypeService>();
builder.Services.AddScoped<IPhSDocumentTypeRepository, PhSDocumentTypeRepository>();
builder.Services.AddScoped<IDocumentTypeDom, DocumentTypeService>();
#endregion #endregion
#region Require Confirmed Email #region Require Confirmed Email