Ejemplo n.º 1
0
        public async Task <bool> Exists(Guid communityId)
        {
            var community = await _communityRepository.GetById(communityId)
                            .ConfigureAwait(true);

            return(community != null);
        }