Browse Source
Remove unnecessary method from example
pull/22398/head
enisn
1 year ago
No known key found for this signature in database
GPG Key ID: A052619F04155D1C
2 changed files with
0 additions and
6 deletions
-
BIN
docs/en/Community-Articles/2025-03-18-Using-Vue-Components/abp-js-proxy.png
-
docs/en/Community-Articles/2025-03-18-Using-Vue-Components/post.md
Width:
|
Height:
|
Size: 2.1 KiB
Width:
|
Height:
|
Size: 8.1 KiB
|
|
|
@ -164,11 +164,6 @@ public class TodoAppService : MyTodoAppAppService, ITodoAppService |
|
|
await Task.Delay(1500); |
|
|
await Task.Delay(1500); |
|
|
return Items; |
|
|
return Items; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public async Task<string> GetMessageAsync() |
|
|
|
|
|
{ |
|
|
|
|
|
return "Hello World"; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
@ -189,7 +184,6 @@ public interface ITodoAppService |
|
|
{ |
|
|
{ |
|
|
Task<List<TodoItem>> GetAllAsync(); |
|
|
Task<List<TodoItem>> GetAllAsync(); |
|
|
Task<TodoItem> AddTodoItemAsync(TodoItem input); |
|
|
Task<TodoItem> AddTodoItemAsync(TodoItem input); |
|
|
Task<string> GetMessageAsync(); |
|
|
|
|
|
} |
|
|
} |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
|