public static bool negotiateOffer(string negotiatorUsername, int requestID, double price) { aUser negotiator = getUser(negotiatorUsername); if (negotiator == null) { return(false); } return(negotiator.negotiateRequest(requestID, price)); }