public ClassParser(IParserCollection parserCollection, ILog logger) { this.parserCollection = parserCollection; this.logger = logger; }
public EndpointDeclarationFactoryOptions(string routePatern, IEnumerable <IEndpointMetaDataDeclaration> endpointMetaDeclarations, IParserCollection parsers) { RoutePattern = routePatern; EndpointMetaDeclarations = endpointMetaDeclarations.ToArray(); Parsers = parsers; }
public EnumerableParser(IParserCollection parserCollection) { this.parserCollection = parserCollection; }