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