public async Task <IActionResult> UpdateDowntime([FromBody] UpdateDowntimeViewModel model)
        {
            var result = await testTechService.UpdateDowntime(model);

            return(Json(new { statusCode = result.StatusCode }));
        }