API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TimeshareWeekController.cs 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using Microsoft.AspNetCore.Mvc;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Transactions;
  6. using UnivateProperties_API.Containers.Timeshare;
  7. using UnivateProperties_API.Model.Timeshare;
  8. using UnivateProperties_API.Repository;
  9. using UnivateProperties_API.Repository.Timeshare;
  10. namespace UnivateProperties_API.Controllers.Timeshare
  11. {
  12. [Route("api/[controller]")]
  13. [ApiController]
  14. public class TimeshareWeekController : ControllerBase
  15. {
  16. private readonly IRepository<TimeshareWeek> _Repo;
  17. public TimeshareWeekController(IRepository<TimeshareWeek> repo)
  18. {
  19. _Repo = repo;
  20. }
  21. [HttpGet]
  22. public IActionResult Get()
  23. {
  24. var items = (_Repo as WeekRepository).GetDtoListAll();
  25. return new OkObjectResult(items);
  26. }
  27. [HttpGet("{id}")]
  28. public IActionResult Get(int id)
  29. {
  30. var item = _Repo.Get(x => x.Id == id);
  31. return new OkObjectResult(item);
  32. }
  33. [HttpGet("getAvailResort")]
  34. public IActionResult GetAvailResort()
  35. {
  36. if (_Repo is WeekRepository)
  37. {
  38. var item = (_Repo as WeekRepository).GetAvailResort();
  39. return new OkObjectResult(item);
  40. }
  41. else return new OkResult();
  42. }
  43. [HttpGet("getBy")]
  44. public IActionResult GetBy(WeekFilterDto week)
  45. {
  46. var item = (_Repo as WeekRepository).GetBy(week);
  47. return new OkObjectResult(item);
  48. }
  49. [HttpPost]
  50. public IActionResult Post([FromBody] TimeshareWeek item)
  51. {
  52. using (var scope = new TransactionScope())
  53. {
  54. _Repo.Insert(item);
  55. scope.Complete();
  56. return CreatedAtAction(nameof(Get), new { id = item.Id }, item);
  57. }
  58. }
  59. [HttpPut("{id}")]
  60. public IActionResult Put([FromBody] TimeshareWeek item)
  61. {
  62. if (item != null)
  63. {
  64. using (var scope = new TransactionScope())
  65. {
  66. _Repo.Update(item);
  67. scope.Complete();
  68. return new OkResult();
  69. }
  70. }
  71. return new NoContentResult();
  72. }
  73. [HttpDelete("{id}")]
  74. public IActionResult Delete(int id)
  75. {
  76. _Repo.RemoveAtId(id);
  77. return new OkResult();
  78. }
  79. }
  80. }