feat(dal,templateMatcher): Shortcodes добавлены %МАКС:ИМЯ АТРИБУТА%, %ГР_ПОЛЕ-ПН%, %БУКВЫ:ИМЯ АТРИБУТА%, исправлена фильтрация в UnitFilter, TemplateMatcher отдельные классы для типов работ, Shortcodes теперь работает по своим моделям Dto
This commit is contained in:
14
PARR.DAL/DomainServices/Shortcodes/IShortcodesService.cs
Normal file
14
PARR.DAL/DomainServices/Shortcodes/IShortcodesService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using PARR.DAL.DomainModels;
|
||||
using PARR.DAL.DomainServices.Shortcodes.Models;
|
||||
|
||||
namespace PARR.DAL.DomainServices.Shortcodes
|
||||
{
|
||||
public interface IShortcodesService
|
||||
{
|
||||
Task<string> ApplyShortcodesAsync(string str, TemplateForShortcodes template);
|
||||
|
||||
bool IsAnyShortcodes(string str);
|
||||
|
||||
Task<List<ShortcodeInfoDto>> GetAvailableShortcodesAsync();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user