Archived
0

add seller getter

This commit is contained in:
iMoHax
2015-07-17 15:32:45 +03:00
parent 3ff1593d4a
commit 3139e5a7ad

View File

@@ -60,6 +60,10 @@ public class Order implements Comparable<Order> {
return buy.getVendor().equals(buyer);
}
public Vendor getSeller(){
return sell.getVendor();
}
public Vendor getBuyer(){
return buy.getVendor();
}