async void GetTodos() { var todos = await MobileService.GetTodosAsync(); foreach (var todo in todos) { Todos.Add(todo); } }
protected override void OnDisappearing() { base.OnDisappearing(); MobileService.SaveTodoAsync(BindingContext as TodoItem); }