2026-04-13 16:58:30 +10:00
|
|
|
|
using PARR.Domain.Entities.Base.History;
|
2025-12-23 18:27:31 +10:00
|
|
|
|
|
|
|
|
|
|
namespace PARR.TemplateMatcher.Services.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface ITemplateSynchronizer
|
|
|
|
|
|
{
|
|
|
|
|
|
Task SyncTemplatesForJobAsync(Guid jobId, HistoryInitiator initiator);
|
|
|
|
|
|
Task SyncTemplatesForJobGroupAsync(Guid jobGroupId, HistoryInitiator initiator);
|
|
|
|
|
|
Task UpdateTemplatesForJobAsync(Guid jobId, HistoryInitiator initiator);
|
|
|
|
|
|
}
|
2026-04-13 16:58:30 +10:00
|
|
|
|
}
|