public async Task <ActionResult> Edit(TodoElement todo) { try { await sqlService.Edit(todo); return(Ok()); } catch (Exception) { return(NotFound()); } }