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

This commit is contained in:
Leandro Hernan Rojas 2025-04-03 18:27:56 -03:00
parent 26ad549a0e
commit 31edbf577f
3 changed files with 3 additions and 5 deletions

View File

@ -7,9 +7,9 @@ namespace Models.Repositories
{ {
public class PhSAccountTypeRepository : GenericRepository<EAccountType>, IPhSAccountTypeRepository public class PhSAccountTypeRepository : GenericRepository<EAccountType>, IPhSAccountTypeRepository
{ {
private readonly DbContext _context; private readonly PhronCareOperationsHubContext _context;
public PhSAccountTypeRepository(DbContext context) : base(context) public PhSAccountTypeRepository(PhronCareOperationsHubContext context) : base(context)
{ {
_context = context; _context = context;
} }

View File

@ -1,6 +1,7 @@
using Core.Interfaces; using Core.Interfaces;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
namespace phronCare.API.Controllers.Sales namespace phronCare.API.Controllers.Sales
{ {
[Route("api/[controller]")] [Route("api/[controller]")]

View File

@ -1,10 +1,7 @@
using Core.Interfaces; using Core.Interfaces;
using Core.Services;
using Domain.Entities; using Domain.Entities;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
namespace phronCare.API.Controllers.Tickets namespace phronCare.API.Controllers.Tickets
{ {
[Route("api/[controller]")] [Route("api/[controller]")]