Beispiel #1
0
 public Task <bool> DeleteTodoList(AJTaskManagerMobile.Model.DTO.TodoList list)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 public async Task <bool> InsertTodoList(AJTaskManagerMobile.Model.DTO.TodoList todoList, string userId)
 {
     _todoLists.Add(todoList);
     return(await Task.Factory.StartNew(() => true));
 }