public bool Equals(ILim other) { if (direction == other.direction && date == other.date) { return(true); } return(false); }
public bool isAllowed(ILim limit) { // if (limit.limitType == e_dot_Limit.None) return false; return(isAllowed(limit.date)); }