예제 #1
0
        public ActionResult <List <TagOutputModel> > GetAllTags()
        {
            Mapper           mapper = new Mapper();
            AuthorDataAccess tags   = new AuthorDataAccess();

            return(Ok(mapper.ConvertTagDTOToTagModelList(tags.GetAllTags())));
        }