Commit d6e80a32 authored by Rohit Prasad's avatar Rohit Prasad

Implement SellTrade class

parent 0124850c
public class SellTrade extends Trade {
SellTrade(int time, Customer c, int qty, float price) {
super(time, "SELL", 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