feat(templateDistributor): логика распределения шаблонов по периоду

This commit is contained in:
Mikhail Kuznetsov
2024-07-05 15:17:48 +10:00
parent cf5a465546
commit 21a175d197
8 changed files with 370 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
namespace PARR.TemplateDistributor.Services
{
internal interface IValidatorService
{
Task<bool> IsValidApplicationAndWorksAsync(Guid applicationInWorkId);
}
}