public bool ShouldApply(IPOReader reader)
 {
     return(reader.Request.Any(x => x.StartsWith("video") || x.StartsWith("book")));
 }
 public bool ShouldApply(IPOReader reader)
 {
     return(reader.Request.Any(x => x.Contains(match)));
 }
Example #3
0
 public bool ShouldApply(IPOReader reader)
 {
     return(reader.Request.Any(x => x.StartsWith("referer")));
 }
Example #4
0
 public bool ShouldApply(IPOReader purchaseOrder)
 {
     return(rules.All(x => x.ShouldApply(purchaseOrder)));
 }
Example #5
0
 public bool ShouldApply(IPOReader reader)
 {
     return(reader.Request.Any(x => x.StartsWith("membership upgrade")));
 }