Esempio n. 1
0
 public ActionResult moveDown(int id, string userName)
 {
     _serv.moveDown(id, userName);
     return(Json(new
     {
         jobSuccess = true,
         status = "OK",
         workerID = id
     }));
 }
Esempio n. 2
0
 public ActionResult moveDown(int id, string userName)
 {
     _serv.moveDown(id, userName);
     return(Json(new
     {
         jobSuccess = true,
         status = "OK",
         workerID = id
     },
                 JsonRequestBehavior.AllowGet));
 }