feat(api, bll): StatHostController, StatApplicationController добавлена статистика за период. ICalendarService - публичный метод для получения списка дат, метод получения даты с учетом часового пояса.

This commit is contained in:
Mikhail Trubnikov
2024-08-30 16:40:06 +10:00
parent 933bfcbeb1
commit 0c37de6238
15 changed files with 205 additions and 70 deletions

View File

@@ -0,0 +1,9 @@
namespace PARR.API.Contracts.V1.Responses.Statistics
{
public class StatApplicationPeriodResponse
{
public DateOnly Date { get; set; }
public int CreatedApplicationsCount { get; set; }
}
}