feat(dal): NextRunServiceV2 - заготовка распределения шаблонов в рамках JobGroup
This commit is contained in:
14
PARR.DAL/NextRunServices/INextRunServiceV2.cs
Normal file
14
PARR.DAL/NextRunServices/INextRunServiceV2.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user