feat(api): StatOrderController - статистика загрузки нарядов за период

This commit is contained in:
Mikhail Trubnikov
2024-09-04 10:14:47 +10:00
parent 86af90f560
commit 62d84b0a18
3 changed files with 57 additions and 1 deletions

View File

@@ -25,4 +25,10 @@
public int AllCount { get; set; }
public int TaskCount { get; set; }
}
public class StatOrderGetForPeriodResponse
{
public DateOnly Date { get; set; }
public int OrderCount { get; set; }
}
}