Ejemplo n.º 1
0
 public ActionResult EditGoods(int id, Vare endreVare)
 {
     if (loginCheck() == false)
     {
         return(RedirectToAction("LoggInn"));
     }
     if (ModelState.IsValid)
     {
         var  vareDb    = new VareBLL();
         bool endringOK = vareDb.changeGoods(id, endreVare);
         if (endringOK)
         {
             return(RedirectToAction("ListGoods"));
         }
     }
     return(View());
 }