Relate term to term?

Wow, it just works… I can use wp_set_object_terms() to set a term to a term…

$term_taxonomy_ids = wp_set_object_terms( $bill_term_id, $microsoft_term_id, 'company' );

And I can retrieve the company connected to a person with wp_get_object_terms like…

$bills_company_terms = wp_get_object_terms($bill_term_id, 'company');

The only thing is, how can I put a backend interface on these relationships?