Ejemplo n.º 1
0
 //GET: Admin/ShipmentManager/Delete
 public ActionResult Delete(int id)
 {
     try
     {
         m_shipmentWorker.DeleteManagerShipmentTypes(id);
         return(RedirectToAction("Index"));
     }
     catch (Exception ex)
     {
         this.ShowError(ex);
         return(null);
     }
 }