93 lines
2.5 KiB
C#
93 lines
2.5 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using ProfessionalProfile.Domain;
|
|
using ProfessionalProfile.Interfaces;
|
|
|
|
namespace ProfessionalProfile.Controllers
|
|
{
|
|
[ApiController]
|
|
[Route("api/[controller]")]
|
|
public class QuestionController : Controller
|
|
{
|
|
private readonly IQuestionRepo _questionRepo;
|
|
public QuestionController(IQuestionRepo questionRepo)
|
|
{
|
|
_questionRepo = questionRepo;
|
|
}
|
|
|
|
[HttpGet(Name = "GetAllQuestions")]
|
|
public IActionResult GetAll()
|
|
{
|
|
try
|
|
{
|
|
return Ok(_questionRepo.GetAll());
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return BadRequest(ex.Message);
|
|
}
|
|
}
|
|
|
|
[HttpGet("{id}", Name = "QuestionGetById")]
|
|
[ProducesResponseType(200, Type = typeof(Question))]
|
|
[ProducesResponseType(400)]
|
|
public IActionResult GetById(int id)
|
|
{
|
|
try
|
|
{
|
|
return Ok(_questionRepo.GetById(id));
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return BadRequest(ex.Message);
|
|
}
|
|
}
|
|
|
|
[HttpPost(Name = "AddQuestion")]
|
|
[ProducesResponseType(201)]
|
|
[ProducesResponseType(400)]
|
|
public IActionResult Add([FromBody] Question question)
|
|
{
|
|
try
|
|
{
|
|
_questionRepo.Add(question);
|
|
return CreatedAtRoute("QuestionGetById", new { id = question.questionId }, question);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return BadRequest(ex.Message);
|
|
}
|
|
}
|
|
|
|
[HttpPut(Name = "UpdateQuestion")]
|
|
[ProducesResponseType(204)]
|
|
[ProducesResponseType(400)]
|
|
public IActionResult Update([FromBody] Question question)
|
|
{
|
|
try
|
|
{
|
|
_questionRepo.Update(question);
|
|
return Ok(question);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return BadRequest(ex.Message);
|
|
}
|
|
}
|
|
|
|
[HttpDelete("{id}", Name = "DeleteQuestion")]
|
|
[ProducesResponseType(204)]
|
|
[ProducesResponseType(400)]
|
|
public IActionResult Delete([FromRoute] int id)
|
|
{
|
|
try
|
|
{
|
|
_questionRepo.Delete(id);
|
|
return NoContent();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return BadRequest(ex.Message);
|
|
}
|
|
}
|
|
}
|
|
} |