public async Task <List <EntryDTO> > GetEntriesOfTablet(string tabletId)
        {
            var result = await _entriesRepository.GetEntriesOfTablet(await UserId, tabletId);

            return(result);
        }