public virtual ActionResult OPIStep7(int id)
        {
            if (id == 0)
            {
                return this.LoadOrCreateAndPrefillNewApplication();
            }

            // UI check uncomment to skip payment process
            // OLEApplicationSubmit model = this.businessLogic.GetOLEApplicationSubmit(id);
            // return this.View(MVC.OLE.Views.Views.OPI_Step7, model);

            var paymentHelper = new VetumaPaymentHelper(this.PaymentLogic);

            if (paymentHelper.ProcessResult(id))
            {
                OLEApplicationSubmit model = this.businessLogic.GetOLEApplicationSubmit(id);
                return this.View(MVC.OLE.Views.Views.OPI_Step7, model);
            }

            return this.RedirectToAction(MVC.Dashboard.ActionNames.Index);
        }