public SlugGenerator(SlugGeneratorOptions slugGeneratorOptions, ISlugStore slugStore, ISlugAlgorithm slugAlgorithm) { _slugStore = slugStore; _slugAlgorithm = slugAlgorithm; _slugGeneratorOptions = slugGeneratorOptions; }
public SlugGenerator(SlugGeneratorOptions slugGeneratorOptions, ISlugStore slugStore) : this(slugGeneratorOptions, slugStore, new DefaultSlugAlgorithm()) { }
public SlugGenerator(SlugGeneratorOptions slugGeneratorOptions, ISlugAlgorithm slugAlgorithm) : this(slugGeneratorOptions, new InMemorySlugStore(), slugAlgorithm) { }
public SlugGenerator(SlugGeneratorOptions slugGeneratorOptions) : this(slugGeneratorOptions, new InMemorySlugStore(), new DefaultSlugAlgorithm()) { }