Files
KonSoft.Clean/gateways/KonSoft.InternalGateway/Aggregations/Base/ICachedServiceBase.cs

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);
}