feat(templateMatcher): refactoring

This commit is contained in:
Mikhail Kuznetsov
2025-12-26 21:47:53 +10:00
parent e04d2b628c
commit e8db55400c
11 changed files with 679 additions and 554 deletions

View File

@@ -0,0 +1,9 @@
using PARR.DAL.Models.Job;
namespace PARR.TemplateMatcher.Services.Interfaces
{
public interface ITemplateNameNormalizer
{
Task<string> GetNormalizedTemplateNameAsync(Job job, Guid unitId, int? index = null, List<Guid>? templateUnitIds = null);
}
}