using Nop.Web.Framework.Models; namespace Nop.Web.Framework.Factories; /// /// Represents the localized model factory /// public partial interface ILocalizedModelFactory { /// /// Prepare localized model for localizable entities /// /// Localized model type /// Model configuration action /// /// A task that represents the asynchronous operation /// The task result contains the list of localized model /// Task> PrepareLocalizedModelsAsync(Func configure = null) where T : ILocalizedLocaleModel; }