public ActionResult AddCategoryGallery(CategoryGallery category) { CategoryGalleryDAO dao = new CategoryGalleryDAO(); dao.AddCategory(category); return(View()); }
public void AddCategory(CategoryGallery category) { db.CategoryGalleries.Add(category); db.SaveChanges(); }