53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
using back.Application.Services;
|
|
using back.Entities.DTOs.Request;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace back.Controllers
|
|
{
|
|
[Route("api/v1/[controller]")]
|
|
[ApiController]
|
|
public class CasaController : ControllerBase
|
|
{
|
|
private readonly CasaService service;
|
|
|
|
public CasaController(CasaService service)
|
|
{
|
|
this.service = service;
|
|
}
|
|
[HttpGet("GetOne/{id}")]
|
|
public async Task<IActionResult> GetOne(int id)
|
|
{
|
|
return Ok(await service.GetOne(id));
|
|
}
|
|
|
|
[HttpGet("GetAll")]
|
|
public async Task<IActionResult> GetAll()
|
|
{
|
|
return Ok(await service.GetAll());
|
|
}
|
|
|
|
[HttpPost("Create")]
|
|
public async Task<IActionResult> Create(CasaRequestDto dto)
|
|
{
|
|
if(dto.Direction == null)
|
|
{
|
|
return BadRequest("Direccion debe existir");
|
|
}
|
|
return Ok(await service.Add(dto));
|
|
}
|
|
|
|
[HttpPut("Update")]
|
|
public async Task<IActionResult> Update(CasaUpdateRequestDto dto)
|
|
{
|
|
return Ok(await service.Update(dto));
|
|
}
|
|
|
|
[HttpDelete("Delete/{id}")]
|
|
public async Task<IActionResult> Delete(int id)
|
|
{
|
|
return Ok(service.Delete(id));
|
|
}
|
|
}
|
|
}
|