21 lines
742 B
C#
21 lines
742 B
C#
using Nop.Core.Domain.Orders;
|
|
using Nop.Services.Attributes;
|
|
using Nop.Services.Caching;
|
|
|
|
namespace Nop.Services.Orders.Caching;
|
|
|
|
/// <summary>
|
|
/// Represents a checkout attribute value cache event consumer
|
|
/// </summary>
|
|
public partial class CheckoutAttributeValueCacheEventConsumer : CacheEventConsumer<CheckoutAttributeValue>
|
|
{
|
|
/// <summary>
|
|
/// Clear cache data
|
|
/// </summary>
|
|
/// <param name="entity">Entity</param>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
protected override async Task ClearCacheAsync(CheckoutAttributeValue entity)
|
|
{
|
|
await RemoveAsync(NopAttributeDefaults.AttributeValuesByAttributeCacheKey, nameof(CheckoutAttribute), entity.AttributeId);
|
|
}
|
|
} |