Пример #1
0
 public ValueTask <TimerModel[]> GetAllTimersForUserAsync(string userId)
 {
     return(timerRepository
            .GetAllTimersAsync(userId)
            .Select(x => x.ToTimerModel())
            .ToArrayAsync());
 }