public async Task <IActionResult> RestoreById(int id) { try { var result = await _repo.RestoreById(id); return(StatusCode(200, new SuccessResponseDto { Message = "Khôi phục " + _entityName + " thành công!", Result = new SuccessResponseResultWithSingleDataDto { Data = result } })); } catch (Exception e) { return(StatusCode(500, new FailedResponseDto { Message = "Khôi phục " + _entityName + " thất bại!", Result = new FailedResponseResultDto { Errors = e } })); } }