Files
parr_api/PARR.DAL/DomainServices/Interfaces/IGroupedShortcodesCacheService.cs

12 lines
299 B
C#

namespace PARR.DAL.DomainServices.Interfaces
{
public interface IGroupedShortcodesCacheService
{
Task<string> GetAggregatedValueAsync(
Guid jobGroupId,
Guid unitId,
string shortcodeKey,
Func<Task<string>> computeIfMissing);
}
}