public async Task InvalidateCacheAsync(Guid productId)
 {
     _cachingRepository.Delete(productId.ToString());
 }
Exemple #2
0
 public async Task InvalidateCacheAsync(Guid manufacturerId)
 {
     _cachingRepository.Delete(manufacturerId.ToString());
 }