Exemple #1
0
        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));
        }
Exemple #2
0
 public Task <bool> DeleteTaskItem(AJTaskManagerMobile.Model.DTO.TaskItem taskItem)
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 public Task <bool> InsertTaskItem(AJTaskManagerMobile.Model.DTO.TaskItem taskItem, string userId)
 {
     throw new NotImplementedException();
 }