示例#1
0
        public ActionResult GetTag([FromRoute] long tagId)
        {
            var tagDto = _publicAccessService.GetTagById(tagId);

            if (tagDto == null)
            {
                return(NotFound());
            }

            return(Ok(tagDto));
        }