12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- using Microsoft.AspNetCore.Mvc;
- using System.Transactions;
- using UnivateProperties_API.Model.Region;
- using UnivateProperties_API.Repository.Region;
-
- namespace UnivateProperties_API.Controllers.Region
- {
- [Route("api/[controller]")]
- [ApiController]
- public class SuburbController : ControllerBase
- {
- private readonly ISuburbRepository _Repo;
-
- public SuburbController(ISuburbRepository repo)
- {
- _Repo = repo;
- }
-
- [HttpGet]
- public IActionResult Get()
- {
- return new OkObjectResult(_Repo.GetAll());
- }
-
- [HttpGet("GetSearchList")]
- public IActionResult GetSearchList()
- {
- return new OkObjectResult(_Repo.GetSearchList());
- }
-
- [HttpGet("GetByProperty/{id}")]
- public IActionResult GetByProperty(int id)
- {
- return new OkObjectResult(_Repo.GetByProperty(id));
- }
-
- [HttpGet("{id}")]
- public IActionResult Get(int id)
- {
- return new OkObjectResult(_Repo.Get(x => x.Id == id));
- }
-
- [HttpGet("{province}/{city}")]
- public IActionResult Get(string Province, string City)
- {
- return new OkObjectResult(_Repo.GetBy(Province, City));
- }
-
- [HttpPost]
- public IActionResult Post([FromBody] Suburb suburb)
- {
- using (var scope = new TransactionScope())
- {
- _Repo.Insert(suburb);
- scope.Complete();
- return CreatedAtAction(nameof(Get), new { id = suburb.Id }, suburb);
- }
- }
-
- [HttpPut]
- public IActionResult Put([FromBody] Suburb suburb)
- {
- if (suburb != null)
- {
- using (var scope = new TransactionScope())
- {
- _Repo.Update(suburb);
- scope.Complete();
- return new OkResult();
- }
- }
- return new NoContentResult();
- }
-
- [HttpDelete("{id}")]
- public IActionResult Delete(int id)
- {
- _Repo.RemoveAtId(id);
- return new OkResult();
- }
- }
- }
|