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

        public Task SaveSmoothieRestItemAsync(SmoothieRestItem item, bool isNewItem)
        {
            throw new NotImplementedException();
        }