public ActionResult AttachSage()
        {
            log.Info("Attaching Sage");
            string callback = Url.Action("SageCallback", "SageMarketPlaces", new { Area = "Customer" }, "https");
            string url      = SageConnector.GetApprovalRequest(callback);

            log.InfoFormat("Redirecting to sage: {0}", url);
            return(Redirect(url));
        }