Ejemplo n.º 1
0
        public async Task <bool> StudentAndGroupExists(Guid groupId, Guid studentId)
        {
            var result = await Task.WhenAll(_groupsRepository.IdExists(groupId), _studentsRepository.IdExists(studentId));

            return(result.All(x => x));
        }