示例#1
0
 public void EditCategory(Category category)
 {
     var original = this.FindCategory(category.Id);
     original.CategoryName = category.CategoryName;
 }
示例#2
0
 public void CreateCategory(Category category)
 {
     _repo.Add<Category>(category);
     _repo.SaveChanges();
 }