public Handler(IRegexCache regex, IMediator mediator, ILogger log) { _regex = regex; _mediator = mediator; _log = log; }
public Handler(IRegexCache regexCache, IAbbreviations abbreviations, ILogger log) { _regexCache = regexCache; _abbreviations = abbreviations; _log = log; }
public ParseAddressCommand(IRegexCache regexCache, IAbbreviations abbreviations) { _regexCache = regexCache; _abbreviations = abbreviations; }
public ParseZoneCommand(IRegexCache regex, IGoogleDriveCache driveCache) { _regex = regex; _driveCache = driveCache; }
public DoubleAvenueExceptionPipeline(IRegexCache cache, ILogger log) { _log = log; _ordinal = cache.Get("avesOrdinal"); }