public void moveDependencySupplier(DependencyRelationship dependency, Class newSupplier) {
   dependency.setSupplier(newSupplier);
 }
 public void moveDependency(DependencyRelationship dependency, Class client, Class supplier) {
   dependency.setClient(client);
   dependency.setSupplier(supplier);
   client.addRelationship(dependency);
   supplier.addRelationship(dependency);
 }