示例#1
0
 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));
     }
 }