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