public CacheAwareBundleCollectionInitializer(IEnumerable <IConfiguration <BundleCollection> > bundleConfigurations, IBundleCollectionCache cache, ExternalBundleGenerator externalBundleGenerator, ManifestValidator manifestValidator, CassetteSettings settings) { this.bundleConfigurations = bundleConfigurations; this.cache = cache; this.externalBundleGenerator = externalBundleGenerator; this.manifestValidator = manifestValidator; this.settings = settings; }
public CacheAwareBundleCollectionInitializer(IEnumerable<IConfiguration<BundleCollection>> bundleConfigurations, IBundleCollectionCache cache, ExternalBundleGenerator externalBundleGenerator, ManifestValidator manifestValidator, CassetteSettings settings) { this.bundleConfigurations = bundleConfigurations; this.cache = cache; this.externalBundleGenerator = externalBundleGenerator; this.manifestValidator = manifestValidator; this.settings = settings; }
public BundleCacheRebuilder(BundleCollection bundles, IBundleCollectionCache cache, IBundleCollectionInitializer bundleCollectionInitializer) { this.bundles = bundles; this.cache = cache; this.bundleCollectionInitializer = bundleCollectionInitializer; }