15 lines
606 B
C#
15 lines
606 B
C#
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);
|
||
}
|
||
}
|