2025-12-23 18:27:31 +10:00
|
|
|
|
namespace PARR.DAL.DomainServices.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IGroupedShortcodesCacheService
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<string> GetAggregatedValueAsync(
|
2025-12-24 11:25:25 +10:00
|
|
|
|
Guid jobGroupId,
|
2025-12-23 18:27:31 +10:00
|
|
|
|
Guid unitId,
|
|
|
|
|
|
string shortcodeKey,
|
|
|
|
|
|
Func<Task<string>> computeIfMissing);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|