public static async Task <string> GateWayUrlHelper(this EmployerVerificationOrchestratorBase orchestrator,
                                                    string redirectUrl)
 {
     return(await orchestrator.GetGatewayUrl(redirectUrl));
 }
 public static async Task <string> GateWayUrlHelper(this EmployerVerificationOrchestratorBase orchestrator,
                                                    string actionName, string controllerName, string urlScheme, UrlHelper urlHelper)
 {
     return(await orchestrator.GetGatewayUrl(urlHelper.Action(actionName, controllerName, null, urlScheme)));
 }