feat(dal): NextRunService, GetNextRunForJobGroupWithAutoDistributionAsync - реализация, распределение шаблонов

This commit is contained in:
Mikhail Trubnikov
2026-01-21 12:19:27 +10:00
parent eb5bed5614
commit 5ad26742e6
4 changed files with 162 additions and 10 deletions

View File

@@ -1,4 +1,6 @@
namespace PARR.DAL.NextRunServices
using PARR.DAL.NextRunServices.Models;
namespace PARR.DAL.NextRunServices
{
public interface INextRunService
{
@@ -7,7 +9,7 @@
/// </summary>
/// <param name="jobGroupId"></param>
/// <returns></returns>
Task<List<(Guid TemplateId, DateTimeOffset NextRun)>> GetNextRunForJobGroupWithAutoDistributionAsync(Guid jobGroupId);
Task<List<TemplateNextRunResultDto>?> GetNextRunForJobGroupWithAutoDistributionAsync(Guid jobGroupId);
/// <summary>