public async Task <IActionResult> GetDebugResult(string wc)
        {
            var debugresult = await debugService.GetDebugResultAsync(wc);

            return(Json(new { result = debugresult }));
        }
        public async Task <IActionResult> PopulationChart(string wc)
        {
            var debugresult = await debugService.GetDebugResultAsync(wc);

            return(Json(debugresult));
        }