public ActionResult ClearAllDelta(string id) { try { AgenteShoppingList agente = new AgenteShoppingList(); agente.ClearAllDeltaInSummary(id); return(new EmptyResult()); } catch (Exception ex) { return(new HttpStatusCodeResult(System.Net.HttpStatusCode.BadRequest, ex.Message)); } }