*/
public Vendor placeOrderToVendor(Product p, int quantity) {
Vendor dataObjectSet = null;
VendorManagementHub dataObjectManager = new VendorManagementHub();
try {
dataObjectSet = dataObjectManager.placeOrdertoVendorMgtHub(p, quantity);
} catch (Exception e) {
return null;
}