123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Http;
- using Microsoft.AspNetCore.Mvc;
- using MTWorkHR.Application.Filters;
- using MTWorkHR.Application.Identity;
- using MTWorkHR.Application.Models;
- using MTWorkHR.Application.Services.Interfaces;
- using MTWorkHR.Identity.Services;
- namespace MTWorkHR.API.Controllers
- {
- [Route("api/[controller]")]
- [ApiController]
- [AppAuthorize]
- public class OrderAllocationController : ControllerBase
- {
- private readonly IOrderAllocationService _OrderAllocationService;
- public OrderAllocationController(IOrderAllocationService UserOrderAllocationService)
- {
- this._OrderAllocationService = UserOrderAllocationService;
- }
- [HttpGet("GetAll")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task<ActionResult<List<OrderAllocationDto>>> GetAll([FromQuery] PagingInputDto pagingInput)
- {
- return Ok(await _OrderAllocationService.GetAll(pagingInput));
- }
- [HttpGet("Get")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task<ActionResult<OrderAllocationDto>> Get(long OrderAllocationId)
- {
- return Ok(await _OrderAllocationService.GetById(OrderAllocationId));
- }
- [HttpPost("Create")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task<ActionResult<OrderAllocationDto>> Create([FromBody] OrderAllocationDto input)
- {
- return await _OrderAllocationService.Create(input);
- }
- [HttpPost("Update")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task Update([FromBody] OrderAllocationDto input)
- {
- await _OrderAllocationService.Update(input);
- }
- [HttpDelete("Delete")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task Delete([FromQuery]long id)
- {
- await _OrderAllocationService.Delete(id);
- }
- }
- }
|