Esempio n. 1
0
        public async Task <IEnumerable <TimestampDao> > GetUesrTimestamps(string userId, CancellationToken cancellationToken)
        {
            Guard.Argument(userId, nameof(userId)).NotNull().NotEmpty().NotWhiteSpace();

            //TODO: Sudhir Paging
            return(await _timestampRepository.GetTimestampByUser(userId, cancellationToken));
        }