pushed api files

pushed middlewares
This commit is contained in:
ElenitaMLG
2024-04-07 02:49:34 +03:00
parent 55eaa0d53a
commit 2ccec617a5
11 changed files with 390 additions and 54 deletions
@@ -1,9 +1,67 @@
using Microsoft.AspNetCore.Mvc;
using Application.Endpoints.MedicalHistories;
using Application.Services.Database;
using Core.Entities;
using Microsoft.AspNetCore.Mvc;
namespace HealthcareManager.API.Controllers
namespace HealthcareManager.API.Controllers;
[ApiController]
[Route("api/[controller]")]
public class MedicalHistoryController : ControllerBase
{
public class MedicalHistoryController : BaseApiController
{
private readonly IMedicalHistoryRepository _medicalHistoryRepository;
private readonly IPacientRepository _pacientRepository;
public MedicalHistoryController(IMedicalHistoryRepository medicalHistoryRepository, IPacientRepository pacientRepository)
{
_medicalHistoryRepository = medicalHistoryRepository ?? throw new ArgumentNullException(nameof(medicalHistoryRepository));
_pacientRepository = pacientRepository ?? throw new ArgumentNullException(nameof(pacientRepository));
}
[HttpGet("{id}")]
public async Task<ActionResult<MedicalHistory>> GetAsync(Guid id)
{
var handler = new MedicalHistoryHandler(_medicalHistoryRepository, _pacientRepository);
var response = await handler.HandleGet(id);
if (!response.Success)
{
return BadRequest(response);
}
return Ok(response.Data);
}
[HttpPost("{id}")]
public async Task<ActionResult<MedicalHistory>> PostAsync(Guid id, [FromBody] byte[] description)
{
var handler = new MedicalHistoryHandler(_medicalHistoryRepository, _pacientRepository);
var response = await handler.HandleCreate(id, description).ConfigureAwait(false);
if (!response.Success)
{
return Unauthorized(response);
}
return Ok(response);
}
[HttpPut("{id}")]
public async Task<IActionResult> UpdateAsync(Guid id, [FromBody] MedicalHistoryDTO medicalHistoryDTO)
{
var handler = new MedicalHistoryHandler(_medicalHistoryRepository, _pacientRepository);
var response = await handler.HandleUpdate(id, medicalHistoryDTO).ConfigureAwait(false);
if (response.Success)
{
return Ok(response);
}
return BadRequest(response);
}
[HttpPut("grant_access")]
public async Task<IActionResult> GrantAccessToMedicalHistory(Guid id)
{
return NotFound();
}
}