using PARR.DAL.DomainModels; using PARR.DAL.DomainServices.Shortcodes.Models; using PARR.DAL.Models; namespace PARR.DAL.DomainServices.Shortcodes { public interface IShortcodesService { Task ApplyShortcodesAsync(string str, TemplateForShortcodes template); Task ApplyShortcodesAsync(string str, Template template); // bool IsAnyShortcodes(string str); Task> GetAvailableShortcodesAsync(); } }