public async Task <string> GenerateVerificationCodeAsync(string phone) { var code = await _tokenContext.GenerateVerificationCodeAsync(phone); await _smsSendRequest.SendVerificationCodeAsync(new string[] { phone }, code); return(code); }