コード例 #1
0
 public void addCategorie(Categorie categorie)
 {
     destination.addCategorie(categorie);
 }
コード例 #2
0
 public void removeCategorie(Categorie categorie)
 {
     destination.removeCategorie(categorie);
 }
コード例 #3
0
 public async void updateCategorie(Categorie categorie)
 {
     Debug.WriteLine(categorie.Amount);
      await categorieTable.UpdateAsync(categorie);
 }
コード例 #4
0
 public async void removeCategorie(Categorie categorie) {
     await categorieTable.DeleteAsync(categorie);
     categorieList.Remove(categorie);
 }
コード例 #5
0
 public async void addCategorie(Categorie categorie)
 {
     categorie.TravelListId = this.Id;
     await categorieTable.InsertAsync(categorie);
     categorieList.Add(categorie);
 }