Commit 0124850c authored by Rohit Prasad's avatar Rohit Prasad

Implement BuyTrade

parent 95355cce
public class BuyTrade extends Trade {
BuyTrade(int time, Customer c, int qty, float price) {
super(time, "BUY", c, qty, price);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment