public async Task <bool> UpdateTaskItem(AJTaskManagerMobile.Model.DTO.TaskItem taskItem) { var task = _taskItems.Single(t => t.Id == taskItem.Id); task.IsDeleted = true; return(await Task.Factory.StartNew(() => true)); }
public Task <bool> DeleteTaskItem(AJTaskManagerMobile.Model.DTO.TaskItem taskItem) { throw new NotImplementedException(); }
public Task <bool> InsertTaskItem(AJTaskManagerMobile.Model.DTO.TaskItem taskItem, string userId) { throw new NotImplementedException(); }