Libation/Scraping/UNTESTED/Rules/ScraperRules.Examples.cs
2019-10-04 16:14:04 -04:00

16 lines
417 B
C#

using Scraping.Library;
namespace Scraping.Rules.Examples
{
class ScraperRulesExamples
{
RuleSetLib rulesExamples { get; } = new RuleSetLib
{
// equivilant ways to declare a simple rule action
new BasicRuleLib((row, productItem) => { } ),
new BasicRuleLib { Action = (row, productItem) => { } },
(row, productItem) => { }
};
}
}