Ejemplo n.º 1
0
        public async Task <List <Guide> > GetAllAsync(int userId, CancellationToken ct = default)
        {
            var guides = await _guideRepository.GetAllAsync(ct);

            return(guides.Where(g => g.User.Id == userId).ToList());
        }