Add Patch 3 in API
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 3m8s
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 3m8s
This commit is contained in:
parent
26ad549a0e
commit
31edbf577f
@ -7,9 +7,9 @@ namespace Models.Repositories
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
using Core.Interfaces;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
|
||||
namespace phronCare.API.Controllers.Sales
|
||||
{
|
||||
[Route("api/[controller]")]
|
||||
|
||||
@ -1,10 +1,7 @@
|
||||
using Core.Interfaces;
|
||||
using Core.Services;
|
||||
using Domain.Entities;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace phronCare.API.Controllers.Tickets
|
||||
{
|
||||
[Route("api/[controller]")]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user