Ejemplo n.º 1
0
 public ActionResult moveDown(int id, string userName)
 {
     _serv.moveDown(id, userName);
     return(Json(new
     {
         jobSuccess = true,
         status = "OK",
         workerID = id
     }));
 }
Ejemplo 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));
 }