24 lines
775 B
C#
24 lines
775 B
C#
using Nop.Core.Caching;
|
|
using Nop.Core.Domain.Orders;
|
|
using Nop.Core.Domain.Stores;
|
|
using Nop.Services.Caching;
|
|
using Nop.Services.Localization;
|
|
|
|
namespace Nop.Services.Stores.Caching;
|
|
|
|
/// <summary>
|
|
/// Represents a store cache event consumer
|
|
/// </summary>
|
|
public partial class StoreCacheEventConsumer : CacheEventConsumer<Store>
|
|
{
|
|
/// <summary>
|
|
/// Clear cache data
|
|
/// </summary>
|
|
/// <param name="entity">Entity</param>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
protected override async Task ClearCacheAsync(Store entity)
|
|
{
|
|
await RemoveByPrefixAsync(NopEntityCacheDefaults<ShoppingCartItem>.AllPrefix);
|
|
await RemoveByPrefixAsync(NopLocalizationDefaults.LanguagesByStorePrefix, entity);
|
|
}
|
|
} |