コード例 #1
0
 public Task <IEnumerable <PersistenceWrapper <EventParticipation> > > GetByRelativeMonthIndex(int relativeMonthIndex, Guid userId)
 {
     return(_proxy.GetByRelativeMonthIndex(relativeMonthIndex, userId));
 }
コード例 #2
0
ファイル: HomeViewModel.cs プロジェクト: mauzer/Wellness
 private async Task SetEventParticipations()
 {
     EventParticipations = await _eventParticipationService.GetByRelativeMonthIndex(SelectedRelativeIndex, Id);
 }