public ActionResult Delete(int id)
        {
            var response = _operationDataService.DeleteOperationalData(new DeleteOperationalDataRequest {
                Id = id
            });

            TempData["IsSuccess"] = response.IsSuccess;
            TempData["Message"]   = response.Message;
            if (response.IsSuccess)
            {
                return(RedirectToAction("Index"));
            }
            return(View());
        }