diff --git a/Caching/ICachingService.cs b/Caching/ICachingService.cs index e321459..6be0a60 100644 --- a/Caching/ICachingService.cs +++ b/Caching/ICachingService.cs @@ -1,9 +1,13 @@ -namespace Promact.Core.Caching +using System.Collections.Generic; + +namespace Promact.Core.Caching { public interface ICachingService { void Set(string key, T value); T Get(string key); void Remove(string key); + HashSet GetAllKeys(); + IDictionary GetAll(); } } diff --git a/Promact.Core.csproj b/Promact.Core.csproj index aa26687..1b4426b 100644 --- a/Promact.Core.csproj +++ b/Promact.Core.csproj @@ -9,9 +9,9 @@ https://github.com/Promact/Core https://github.com/Promact/Core README.md - 1.0.0.2 - 1.0.0.2 - 1.0.0.2 + 1.0.0.3 + 1.0.0.3 + 1.0.0.3