コード例 #1
0
ファイル: CardsService.cs プロジェクト: Hoobachube/Top-Trumps
 public async Task <IEnumerable <Card> > GetAllCards()
 {
     return(await _repo.QueryAsync <Card>(
                _helper.GetAllCardsQuery(),
                new CancellationToken()));
 }