2025-12-04 09:24:05 +10:00
|
|
|
|
using PARR.Common.Domain;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.TemplateMatcher
|
2025-11-01 15:29:12 +10:00
|
|
|
|
{
|
|
|
|
|
|
internal interface ITemplateMatcher
|
|
|
|
|
|
{
|
2025-12-04 09:24:05 +10:00
|
|
|
|
Task SyncTemplatesForJob(Guid jobId, HistoryInitiator initiator);
|
|
|
|
|
|
Task UpdateTemplatesForJob(Guid jobId, HistoryInitiator initiator);
|
2025-11-01 15:29:12 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|