11 lines
270 B
C#
11 lines
270 B
C#
namespace PARR.DAL.DomainServices.Interfaces
|
|
{
|
|
public interface IGroupedShortcodesCacheService
|
|
{
|
|
Task<string> GetAggregatedValueAsync(
|
|
Guid unitId,
|
|
string shortcodeKey,
|
|
Func<Task<string>> computeIfMissing);
|
|
}
|
|
}
|