示例#1
0
文件: RILI.cs 项目: DragonXYZ/cilpe
 public IList BelowPriceAvoidingAColor(double price, int color)
 {
     Spec spec = new AndSpec(new BelowPriceSpec(price), new NotSpec(new ColorSpec(color)));
     return SelectBy(spec);
 }
示例#2
0
        public IList BelowPriceAvoidingAColor(double price, int color)
        {
            Spec spec = new AndSpec(new BelowPriceSpec(price), new NotSpec(new ColorSpec(color)));

            return(SelectBy(spec));
        }