using Autofac.Features.Indexed; namespace Gos.Web.SelectLists { public class SelectListProviderFactory : ISelectListProviderFactory { private readonly IIndex providers; public SelectListProviderFactory(IIndex providers) { this.providers = providers; } public ISelectListProvider Get(SelectListType type) { return providers[type]; } } }