feat(api,core): Методы в API для получения метрик заданий роботам, StatRobotMetricsController.

This commit is contained in:
Mikhail Trubnikov
2026-07-16 10:12:56 +10:00
parent 4c80e247f5
commit 751b693e72
17 changed files with 540 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
namespace PARR.Core.Extensions
{
public static class EnumerableExtensions
{
public static int MaxOrDefault(this IEnumerable<int> source)
{
return source.Any() ? source.Max() : 0;
}
}
}