feat(dal): NextRunServiceV2 - заготовка распределения шаблонов в рамках JobGroup

This commit is contained in:
Mikhail Trubnikov
2026-02-12 16:15:36 +10:00
parent 999da9bf84
commit 858dd8c31c
5 changed files with 299 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
using PARR.DAL.NextRunServices.Models;
namespace PARR.DAL.NextRunServices
{
public interface INextRunServiceV2
{
/// <summary>
/// Распределить шаблоны в группе работ (получить список распределенных шаблонов с актуальными nextRun)
/// </summary>
/// <param name="jobGroupId"></param>
/// <returns>Список TemplateId с NextRun и NextRunOld</returns>
Task<List<TemplateNextRunResultDto>?> GetNextRunForJobGroupWithAutoDistributionAsync(Guid jobGroupId);
}
}