133 lines
4.4 KiB
C#
133 lines
4.4 KiB
C#
using Nop.Core.Domain.Vendors;
|
|
using Nop.Web.Models.Common;
|
|
|
|
namespace Nop.Web.Factories;
|
|
|
|
/// <summary>
|
|
/// Represents the interface of the common models factory
|
|
/// </summary>
|
|
public partial interface ICommonModelFactory
|
|
{
|
|
/// <summary>
|
|
/// Prepare the logo model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the logo model
|
|
/// </returns>
|
|
Task<LogoModel> PrepareLogoModelAsync();
|
|
|
|
/// <summary>
|
|
/// Prepare the language selector model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the language selector model
|
|
/// </returns>
|
|
Task<LanguageSelectorModel> PrepareLanguageSelectorModelAsync();
|
|
|
|
/// <summary>
|
|
/// Prepare the currency selector model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the currency selector model
|
|
/// </returns>
|
|
Task<CurrencySelectorModel> PrepareCurrencySelectorModelAsync();
|
|
|
|
/// <summary>
|
|
/// Prepare the tax type selector model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the ax type selector model
|
|
/// </returns>
|
|
Task<TaxTypeSelectorModel> PrepareTaxTypeSelectorModelAsync();
|
|
|
|
/// <summary>
|
|
/// Prepare the header links model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the header links model
|
|
/// </returns>
|
|
Task<HeaderLinksModel> PrepareHeaderLinksModelAsync();
|
|
|
|
/// <summary>
|
|
/// Prepare the admin header links model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the admin header links model
|
|
/// </returns>
|
|
Task<AdminHeaderLinksModel> PrepareAdminHeaderLinksModelAsync();
|
|
|
|
/// <summary>
|
|
/// Prepare the social model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the social model
|
|
/// </returns>
|
|
Task<SocialModel> PrepareSocialModelAsync();
|
|
|
|
/// <summary>
|
|
/// Prepare the footer model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the footer model
|
|
/// </returns>
|
|
Task<FooterModel> PrepareFooterModelAsync();
|
|
|
|
/// <summary>
|
|
/// Prepare the contact us model
|
|
/// </summary>
|
|
/// <param name="model">Contact us model</param>
|
|
/// <param name="excludeProperties">Whether to exclude populating of model properties from the entity</param>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the contact us model
|
|
/// </returns>
|
|
Task<ContactUsModel> PrepareContactUsModelAsync(ContactUsModel model, bool excludeProperties);
|
|
|
|
/// <summary>
|
|
/// Prepare the contact vendor model
|
|
/// </summary>
|
|
/// <param name="model">Contact vendor model</param>
|
|
/// <param name="vendor">Vendor</param>
|
|
/// <param name="excludeProperties">Whether to exclude populating of model properties from the entity</param>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the contact vendor model
|
|
/// </returns>
|
|
Task<ContactVendorModel> PrepareContactVendorModelAsync(ContactVendorModel model, Vendor vendor,
|
|
bool excludeProperties);
|
|
|
|
/// <summary>
|
|
/// Prepare the store theme selector model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the store theme selector model
|
|
/// </returns>
|
|
Task<StoreThemeSelectorModel> PrepareStoreThemeSelectorModelAsync();
|
|
|
|
/// <summary>
|
|
/// Prepare the favicon model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the favicon model
|
|
/// </returns>
|
|
Task<FaviconAndAppIconsModel> PrepareFaviconAndAppIconsModelAsync();
|
|
|
|
/// <summary>
|
|
/// Get robots.txt file
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the robots.txt file as string
|
|
/// </returns>
|
|
Task<string> PrepareRobotsTextFileAsync();
|
|
} |