public ActionResult AddCustomOrganisationDetails(string hashedAccountId)
        {
            OrchestratorResponse <OrganisationDetailsViewModel> response = null;

            if (!string.IsNullOrWhiteSpace(hashedAccountId))
            {
                response = _orchestrator.GetAddOtherOrganisationViewModel(hashedAccountId);
            }
            else
            {
                response = new OrchestratorResponse <OrganisationDetailsViewModel>
                {
                    Data = new OrganisationDetailsViewModel()
                };
            }

            return(View(ControllerConstants.AddOtherOrganisationDetailsViewName, response));
        }
        public ActionResult AddOtherOrganisationDetails(string hashedAccountId)
        {
            var response = _orchestrator.GetAddOtherOrganisationViewModel(hashedAccountId);

            return(View(response));
        }