public Task SaveTaskAsync(SmoothieRestItem item, bool isNewItem = false) { return(restService.SaveSmoothieRestItemAsync(item, isNewItem)); }
public Task DeleteTaskAsync(SmoothieRestItem item) { return(restService.DeleteSmoothieRestItemAsync(item.ID)); }
//Task<List<SmoothieRestItem>> IRestService.RefreshDataAsync() //{ // throw new NotImplementedException(); //} public Task SaveSmoothieRestItemAsync(SmoothieRestItem item, bool isNewItem) { throw new NotImplementedException(); }