Moving routes to their respective controllers

This commit is contained in:
TypoMustakes
2023-12-05 14:29:11 +01:00
parent c38773ca46
commit ce9f3e1df6
3 changed files with 147 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
using Microsoft.AspNetCore.Mvc;
using WD7UVN_HFT_2023241.Logic;
using System.Linq;
using WD7UVN_HFT_2023241.Models;
namespace WD7UVN_HFT_2023241.Endpoint
{
[ApiController]
[Route("api/database")]
public class ServiceController : ControllerBase
{
public ILogicServices LogicServices { get; set; }
public ServiceController(ILogicServices LogicServices)
{
this.LogicServices = LogicServices;
}
[HttpGet()]
public IActionResult ReadAllServices()
{
return View(LogicServices.CRUDOperations.ReadAllServices());
}
[HttpGet("{id}")]
public Service ReadService(int id)
{
return LogicServices.CRUDOperations.ReadService(id);
}
[HttpPut()]
public void PutService([FromBody] Service e)
{
LogicServices.CRUDOperations.CreateService(e);
}
[HttpPost()]
public void UpdateService([FromBody] Service e)
{
LogicServices.CRUDOperations.UpdateService(e);
}
[HttpDelete()]
public void DeleteService([FromBody] int id)
{
LogicServices.CRUDOperations.DeleteService(id);
}
}
}