feat(api): appInWorkContoller добавлены методы Get

This commit is contained in:
Mikhail Kuznetsov
2024-03-27 11:44:15 +10:00
parent 30c190f62f
commit 1d60c9d17d
6 changed files with 27 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ namespace PARR.GeneratorTemplates.Services
if (service == null)
throw new Exception($"Не найден сервис: {nameof(IApplicationsInWorkService)}");
return await service.Get(applicationId, workId) != null;
return await service.GetAsync(applicationId, workId) != null;
}
}
}