Ejemplo n.º 1
0
        public ActionResult listTag()
        {
            var tags    = tagService.FindAll();
            var tagsDTO = AutoMapper.Mapper.Map <ICollection <TagDTO> >(tags);

            return(PartialView(tagsDTO));
        }