public ActionResult listTag() { var tags = tagService.FindAll(); var tagsDTO = AutoMapper.Mapper.Map <ICollection <TagDTO> >(tags); return(PartialView(tagsDTO)); }