public async Task <IActionResult> GetAllDowntimeByWC(string wc)
        {
            var test = await testTechService.GetAllDowntimeByWC(wc);

            return(Json(new { result = test }));
        }