Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IStoreContext.cs

using Nop.Core.Domain.Stores;

namespace Nop.Core;

/// 
/// Store context
/// 
public partial interface IStoreContext
{
    /// 
    /// Gets the current store
    /// 
    /// A task that represents the asynchronous operation
    Task GetCurrentStoreAsync();

    /// 
    /// Gets the current store
    /// 
    Store GetCurrentStore();

    /// 
    /// Gets active store scope configuration
    /// 
    /// A task that represents the asynchronous operation
    Task GetActiveStoreScopeConfigurationAsync();
}