10 lines
227 B
C#
10 lines
227 B
C#
namespace PARR.DAL.DomainServices.Interfaces
|
|
{
|
|
public interface IShortcodesService
|
|
{
|
|
Task<string> ApplyShortcodesAsync(string str, Guid unitId, Guid jobId);
|
|
|
|
bool isAnyShortcodes(string str);
|
|
}
|
|
}
|