Codemaru
1.0.0.0
QR 코드, 모바일 랜딩 페이지, vCard 연락처 저장과 명함 디자인을 한 화면에서 제공하는 디지털 명함 서비스입니다.
Toggle main menu visibility
로딩중...
검색중...
일치하는것 없음
ICardProfileStore.cs
이 파일의 문서화 페이지로 가기
1
using
Codemaru.Models
;
2
3
namespace
Codemaru.Services
;
4
21
public
interface
ICardProfileStore
22
{
55
Task<CardHybridSnapshot?>
LoadAsync
(
string
userId, CancellationToken cancellationToken =
default
);
56
97
Task
SaveAsync
(
string
userId,
CardHybridSnapshot
snapshot, CancellationToken cancellationToken =
default
);
98
131
Task<CardHybridSnapshot?>
LoadBySlugAsync
(
string
slug, CancellationToken cancellationToken =
default
);
132
165
Task
DeleteAsync
(
string
userId, CancellationToken cancellationToken =
default
);
166
}
Codemaru.Models
Definition
CardHistoryEntry.cs:1
Codemaru.Models.CardHybridSnapshot
record CardHybridSnapshot(string? UserId, CardProfile Profile, IReadOnlyList< CardHistoryEntry > History, DateTime SavedAt)
Codemaru.Services
Definition
CardHybridCircuitSession.cs:8
Codemaru.Services.ICardProfileStore
Definition
ICardProfileStore.cs:22
Codemaru.Services.ICardProfileStore.LoadBySlugAsync
Task< CardHybridSnapshot?> LoadBySlugAsync(string slug, CancellationToken cancellationToken=default)
Codemaru.Services.ICardProfileStore.SaveAsync
Task SaveAsync(string userId, CardHybridSnapshot snapshot, CancellationToken cancellationToken=default)
Codemaru.Services.ICardProfileStore.DeleteAsync
Task DeleteAsync(string userId, CancellationToken cancellationToken=default)
Codemaru.Services.ICardProfileStore.LoadAsync
Task< CardHybridSnapshot?> LoadAsync(string userId, CancellationToken cancellationToken=default)
Services
ICardProfileStore.cs
다음에 의해 생성됨 :
1.17.0