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>> GetAll([FromQuery] PagingInputDto pagingInput) { return Ok(await _OrderAllocationService.GetAll(pagingInput)); } [HttpGet("Get")] [ProducesResponseType(StatusCodes.Status200OK)] public async Task> Get(long OrderAllocationId) { return Ok(await _OrderAllocationService.GetById(OrderAllocationId)); } [HttpPost("Create")] [ProducesResponseType(StatusCodes.Status200OK)] public async Task> 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); } [HttpPost("Delete")] [ProducesResponseType(StatusCodes.Status200OK)] public async Task Delete(long id) { await _OrderAllocationService.Delete(id); } } }