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