예제 #1
0
파일: Order.cs 프로젝트: TzarIvan/ratel
 public bool descriptionAndSymbolMatch(Order o)
 {
     return(description.Equals(o.description) && symbol.Equals(o.symbol));
 }
예제 #2
0
파일: Position.cs 프로젝트: TzarIvan/ratel
 public void requireMatches(Position other)
 {
     Bomb.unless(symbol.Equals(other.symbol) && amountDONOTREFERENCE_.Equals(other.amountDONOTREFERENCE_),
                 () => "positions do not match: " + this + ", " + other);
 }