public override void OnAppearing(object navigationContext)
        {
            base.OnAppearing(navigationContext);

            var result = _entityFrameworkService.GetAll();

            Items = new ObservableCollection <TodoItem>(result);
        }
Beispiel #2
0
        public IHttpActionResult GetAll()
        {
            var person = entityFrameworkService.GetAll();

            return(Ok(person));
        }