public Boolean guardarUsuario(Usuario usuario) { ConexionBd con = new ConexionBd(); SqlConnection sqlConnection = con.crearConexion(); if (con != null) { try { SqlCommand command = new SqlCommand("sp_addCliente", sqlConnection); command.CommandType = CommandType.StoredProcedure; command.Parameters.AddWithValue("userId", usuario.userId); command.Parameters.AddWithValue("id", usuario.id); command.Parameters.AddWithValue("title", usuario.title); command.Parameters.AddWithValue("body", usuario.body); command.ExecuteNonQuery(); return(true); } catch (Exception ex) { Console.WriteLine(ex.Message); return(false); } finally { sqlConnection.Close(); } } else { return(false); } }