Skip to content

Commit

Permalink
Update CustomerConverter.java
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonEllerm authored Jun 24, 2018
1 parent 5bce5ce commit 423c3fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions router/src/converters/CustomerConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
*/
public class CustomerConverter {

private String vendCustCode = "0afa8de1-147c-11e8-edec-2b197906d816";

public Customer createCustomer(String firstName, String lastName,
String email, String customField1) {
return new Customer(firstName, lastName, email,
"0afa8de1-147c-11e8-edec-2b197906d816", customField1);
vendCustCode, customField1);
}

}

0 comments on commit 423c3fe

Please sign in to comment.