Beispiel #1
0
        private void SaveCommandExecute()
        {
            var item = new TodoItem
            {
                Id    = Id,
                Name  = Name,
                Notes = Notes,
                Done  = Done
            };

            _entityFrameworkService.Insert(item);
            _navigationService.NavigateBack();
        }