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