// GET: Tag
 public ActionResult Index()
 {
     TagRepository repo = new TagRepository();
     List<Tag> model = repo.GetAllTags();
     return View(model);
 }