示例#1
0
        public async Task <IActionResult> HeatMapAsPercentages()
        {
            IEnumerable <HeatMapViewModel> vacationCounts = await vacationRepository.GetExcusedVacationCountsPerDayAsPercentages();

            return(View(nameof(Heatmap), vacationCounts));
        }