|
Dreamine.Web 1.0.0.0
WPF와 Blazor를 한 코드 흐름으로 연결하고 반복적인 MVVM 코드를 줄이는 오픈소스 FullKit 공식 웹 애플리케이션입니다.
|

Public 멤버 함수 | |
| Task< List< PlaygroundDemo > > | GetAllAsync () |
| Task< PlaygroundDemo?> | GetAsync (string id) |
| Task | SaveAsync (PlaygroundDemo demo) |
| Task | DeleteAsync (string id) |
I Playground Store 기능과 관련 상태를 캡슐화합니다.
IPlaygroundStore.cs 파일의 13 번째 라인에서 정의되었습니다.
| Task DreamineWeb.Services.IPlaygroundStore.DeleteAsync | ( | string | id | ) |
Delete Async 작업을 수행합니다.
| id | id에 사용할 string 값입니다. |
Task 결과입니다.DreamineWeb.Services.JsonPlaygroundStore에서 구현되었습니다.
| Task< List< PlaygroundDemo > > DreamineWeb.Services.IPlaygroundStore.GetAllAsync | ( | ) |
All Async 값을 가져옵니다.
Task<List<PlaygroundDemo>> 결과입니다.DreamineWeb.Services.JsonPlaygroundStore에서 구현되었습니다.
| Task< PlaygroundDemo?> DreamineWeb.Services.IPlaygroundStore.GetAsync | ( | string | id | ) |
Async 값을 가져옵니다.
| id | id에 사용할 string 값입니다. |
Task<PlaygroundDemo?> 결과입니다.DreamineWeb.Services.JsonPlaygroundStore에서 구현되었습니다.
| Task DreamineWeb.Services.IPlaygroundStore.SaveAsync | ( | PlaygroundDemo | demo | ) |
Async 데이터를 저장합니다.
| demo | demo에 사용할 PlaygroundDemo 값입니다. |
Task 결과입니다.DreamineWeb.Services.JsonPlaygroundStore에서 구현되었습니다.