7 lines
231 B
C#
7 lines
231 B
C#
namespace KonSoft.InternalGateway.Aggregations.Base;
|
|
|
|
public interface ICachedServiceBase<TValue>
|
|
{
|
|
void Add(string serviceName, TValue data);
|
|
IDictionary<string, TValue> GetManyAsync(IEnumerable<string> serviceNames);
|
|
} |