Webiant Logo Webiant Logo
  1. No results found.

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

CustomerCacheEventConsumer.cs

using Nop.Core.Domain.Customers;
using Nop.Services.Caching;

namespace Nop.Plugin.Tax.Avalara.Services.Caching;

/// <summary>
/// Represents a customer cache event consumer
/// </summary>
public class CustomerCacheEventConsumer : CacheEventConsumer<Customer>
{
    #region Methods

    /// <summary>
    /// Clear cache data
    /// </summary>
    /// <param name="entity">Entity</param>
    /// <returns>A task that represents the asynchronous operation</returns>
    protected override async Task ClearCacheAsync(Customer entity)
    {
        await RemoveByPrefixAsync(AvalaraTaxDefaults.TaxRateCacheKeyByCustomerPrefix, entity);
    }

    #endregion
}