public async Task Get_Current_Year_Statistics()
        {
            ActionResult <YearStatisticsViewModel> result = await _statisticsController.CurrentYear();

            Assert.IsNotNull(result);
            Assert.IsNotNull(result.Value);
        }