public async Task <IActionResult> Edit(Movement movement) { int success = await _movementService.EditMovementAsync(movement); if (success < 0) { return(NotFound()); } return(RedirectToAction("Index")); }