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 MeetingController : ControllerBase
- {
- private readonly IMeetingService _MeetingService;
- public MeetingController(IMeetingService UserMeetingService)
- {
- this._MeetingService = UserMeetingService;
- }
- [HttpGet("GetAll")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task<ActionResult<List<MeetingDto>>> GetAll([FromQuery] PagingInputDto pagingInput)
- {
- return Ok(await _MeetingService.GetAll(pagingInput));
- }
- [HttpGet("Get")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task<ActionResult<MeetingDto>> Get(long MeetingId)
- {
- return Ok(await _MeetingService.GetById(MeetingId));
- }
- [HttpPost("Create")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task<ActionResult<MeetingDto>> Create([FromBody] MeetingDto input)
- {
- return await _MeetingService.Create(input);
- }
- [HttpPost("Update")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task Update([FromBody] MeetingDto input)
- {
- await _MeetingService.Update(input);
- }
- [HttpPost("Delete")]
- [ProducesResponseType(StatusCodes.Status200OK)]
- public async Task Delete(long id)
- {
- await _MeetingService.Delete(id);
- }
- }
- }
|