Ejemplo n.º 1
0
 public void EditTag(Tag tag)
 {
     _blogContext.Update(tag);
     _blogContext.Commit();
 }
Ejemplo n.º 2
0
 public int AddTag(Tag tag)
 {
     _blogContext.Add(tag);
     _blogContext.Commit();
     return tag.Id;
 }
Ejemplo n.º 3
0
 public static string TagLink(this UrlHelper helper, Tag tag)
 {
     return helper.Action("Tag", "Blog", new { urlSlug = tag.UrlSlug });
 }