public async void FindAll()
        {
            var phus = await _phuService.FindAll();

            Assert.AreEqual(phus.Count(), 1);
        }
 private async void LoadedCommandHandler()
 {
     PHUList = new ObservableCollection <PHU>(
         await _phuService.FindAll());
 }