예제 #1
0
 public ActionResult CreateNyhet([Bind(Include = "Ämne,Innehåll")] NyhetModel model)
 {
     if (ModelState.IsValid)
     {
         db.Add(model);
         return(RedirectToAction("Index"));
     }
     return(View(model));
 }
예제 #2
0
 public void Add(NyhetModel nyhet)
 {
     Nyheter.Add(nyhet);
     this.SaveChanges();
 }