예제 #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));
        }