Beispiel #1
0
        public async Task UpdateTask(TaskModel task1)
        {
            TaskModel task = new TaskModel();

            task1.IsDone = task.IsDone;
            task1.IsDone = TaskViewModel._SelectedTask.IsDone;
            TaskViewModel.NewTask.IsDone = true;
            await iWebApiAsync.Update(task1.TaskId, task1);
        }
 public async Task RunAPITestUpdate(int key, T obj)
 {
     await RunAPITest("Update", () => _webAPI.Update(key, obj));
 }