示例#1
0
 public async Task <IHttpActionResult> DeleteProducto(int Id)
 {
     try
     {
         return(Json(await _Producto.DeleteProducto(Id)));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }