12 lines
542 B
C#
12 lines
542 B
C#
using PARR.Domain.Entities.Base.History;
|
|
|
|
namespace PARR.TemplateMatcher.Services.Interfaces
|
|
{
|
|
public interface ITemplateSynchronizer
|
|
{
|
|
Task SyncTemplatesForJobAsync(Guid jobId, HistoryInitiator initiator, bool dryRun = false, CancellationToken ct = default);
|
|
Task SyncTemplatesForJobGroupAsync(Guid jobGroupId, HistoryInitiator initiator, bool dryRun = false, CancellationToken ct = default);
|
|
Task UpdateTemplatesForJobAsync(Guid jobId, HistoryInitiator initiator, CancellationToken ct = default);
|
|
}
|
|
}
|