2025-12-10 11:55:58 +10:00
|
|
|
|
using PARR.DAL.DomainModels;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.DAL.DomainServices.Interfaces
|
2025-08-01 09:02:01 +10:00
|
|
|
|
{
|
|
|
|
|
|
public interface IShortcodesService
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<string> ApplyShortcodesAsync(string str, Guid unitId, Guid jobId);
|
2025-08-06 10:33:55 +10:00
|
|
|
|
|
2025-12-10 11:55:58 +10:00
|
|
|
|
bool IsAnyShortcodes(string str);
|
|
|
|
|
|
|
|
|
|
|
|
Task<List<ShortcodeInfoDto>> GetAvailableShortcodesAsync();
|
2025-08-01 09:02:01 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|