public async Task <IActionResult> GetAllColumnName()
        {
            string wc     = "hcm_swi";
            var    result = await testTechService.GetallStation(wc);

            return(View(result));
        }
        public async Task <IActionResult> GetTestData(string wc)
        {
            var result = await testTechService.GetallStation(wc);

            var downtimeDetail = await testTechService.GetallDowntimeDetailAsync(wc);

            ViewData["downtimeDetail"] = downtimeDetail;
            return(PartialView(result));
        }