using PARR.DAL.DomainModels; namespace PARR.DAL.DomainServices.Interfaces { public interface IShortcodesService { Task ApplyShortcodesAsync(string str, Guid unitId, Guid jobId, int? index = null); bool IsAnyShortcodes(string str); Task> GetAvailableShortcodesAsync(); } }