Example #1
0
        public async Task <IActionResult> Notices([FromQuery] SimpleDto dto)
        {
            var data   = _dtoParseService.Parse(dto);
            var result = await _msgService.Notices(data);

            return(Content(result, "application/json"));
        }