Example #1
0
        public async Task <bool> IsUserExistAsync(string email, List <string> issuers)
        {
            var existingUser = await _userDataRepository.GetByEmailAndIdentityIssuers(email, issuers);

            return(existingUser != null);
        }