Try your search with a different keyword or use * as a wildcard.
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();
}