Beispiel #1
0
 public JsonResult DLinesUpdate(ENLineDistributorsOrder line)
 {
     try
     {
         line.Save();
         return Json(new { Result = "OK" });
     }
     catch (Exception ex)
     {
         return Json(new { Result = "ERROR", Message = ex.Message });
     }
 }