public async Task <IActionResult> Index()
        {
            var vm = new HomeIndexViewModel
            {
                TopDiseases  = await _diseaseService.GetTopAsync(),
                TopSymptoms  = await _symptomService.GetTopAsync(),
                SymptomCount = await _symptomService.GetCountAsync()
            };

            return(View(vm));
        }