Esempio n. 1
0
        public async Task LoadData()
        {
            IsBusy  = true;
            dogList = await DogApiService.GetDogs();

            DogCollection = new ObservableCollection <Dog>(dogList);
            IsBusy        = false;
        }
 public DogApiServiceTests()
 {
     _apiService = new DogApiService();
 }
Esempio n. 3
0
 public DogModule(DogApiService dog, RootController root)
     : base(root)
 {
     _dog = dog;
 }