Beispiel #1
0
 public void HapusPertanyaanFavorite(PertanyaanViewModel item)
 {
     this.ItemsPertanyaanFavorit.Remove(item);
     NotifyPropertyChanged("FavoritesProperty");
 }
Beispiel #2
0
 public void TambahPertanyaanFavorite(PertanyaanViewModel item)
 {
     this.ItemsPertanyaanFavorit.Add(item);
     NotifyPropertyChanged("FavoritesProperty");
 }