示例#1
0
 public override bool CanRemove(IInstrument instrument)
 {
     if (ResultList.Any(v => v.Ticker == instrument.Ticker))
     {
         return(false);
     }
     if (BlockList.Any(v => v.Ticker == instrument.Ticker))
     {
         return(false);
     }
     return(true);
 }