public Task SaveProductAsync(Product item, bool isNewItem)
 {
     return(restService.SaveObjectAsync <Product>(Constants.ProductsUrl, item, isNewItem));
 }
Example #2
0
 public Task SaveEventAsync(Event item, bool isNewItem)
 {
     return(restService.SaveObjectAsync <Event>(Constants.EventsUrl, item, isNewItem));
 }
Example #3
0
 public Task SaveCategoryAsync(Category item, bool isNewItem)
 {
     return(restService.SaveObjectAsync <Category>(Constants.CategoriesUrl, item, isNewItem));
 }