Ejemplo n.º 1
0
        public ActionResult UpdatePersonalPlant(int id, int wDuration, string nickname)
        {
            //code the update here
            service.UpdatePersonalPlant(id, wDuration, nickname);

            return(Json(new { success = true, message = "Plant updated successfully" }, JsonRequestBehavior.AllowGet));
        }