Exemplo n.º 1
0
 /// <summary>
 /// Returns the College Funding Calculator page.
 /// </summary>
 /// <returns>Action result.</returns>
 public ActionResult CollegeFundingCalculator()
 {
     ViewBag.DesktopStep1Instructions = MvcHelper.CreateFakeInstructions(10);
     ViewBag.DesktopStep2Instructions = MvcHelper.CreateFakeInstructions(5);
     ViewBag.MobileInstructions       = MvcHelper.CreateFakeInstructions(3);
     return(View());
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns the Asset Allocation Tool page.
 /// </summary>
 /// <returns>Action result.</returns>
 public ActionResult AssetAllocationTool()
 {
     ViewBag.DesktopStep1Instructions = MvcHelper.CreateFakeInstructions(12);
     ViewBag.DesktopStep2Instructions = MvcHelper.CreateFakeInstructions(12);
     ViewBag.DesktopStep3Instructions = MvcHelper.CreateFakeInstructions(10);
     ViewBag.DesktopStep4Instructions = MvcHelper.CreateFakeInstructions(5);
     ViewBag.MobileInstructions       = MvcHelper.CreateFakeInstructions(3);
     return(View());
 }
Exemplo n.º 3
0
 /// <summary>
 /// Gets the Edit Personal Information page.
 /// </summary>
 /// <returns>The action result.</returns>
 public ActionResult EditPersonalInfo()
 {
     ViewBag.States = new List <string> {
         "State", "State A", "State B", "State C", "State D"
     };
     ViewBag.DesktopStep1Instructions = MvcHelper.CreateFakeInstructions(4);
     ViewBag.DesktopStep2Instructions = MvcHelper.CreateFakeInstructions(2);
     ViewBag.MobileInstructions       = MvcHelper.CreateFakeInstructions(3);
     return(View());
 }
Exemplo n.º 4
0
        /// <summary>
        /// Gets the E-Delivery Preferences page.
        /// </summary>
        /// <returns>The action result.</returns>
        public ActionResult EDeliveryPreferences()
        {
            var model = new EDeliveryPreferencesModel
            {
                QuarterlyStatementAndFocusNewsLetter = true
            };

            ViewBag.DesktopInstructions = MvcHelper.CreateFakeInstructions(4);
            ViewBag.MobileInstructions  = MvcHelper.CreateFakeInstructions(3);
            return(View(model));
        }
Exemplo n.º 5
0
 /// <summary>
 /// Gets the Change Mobile Phone page.
 /// </summary>
 /// <returns>The action result.</returns>
 public ActionResult ChangeMobilePhone()
 {
     ViewBag.DesktopStep1Instructions = MvcHelper.CreateFakeInstructions(4);
     ViewBag.DesktopStep2Instructions = MvcHelper.CreateFakeInstructions(2);
     ViewBag.DesktopStep3Instructions = MvcHelper.CreateFakeInstructions(2);
     ViewBag.DesktopStep4Instructions = MvcHelper.CreateFakeInstructions(2);
     ViewBag.MobileInstructions       = MvcHelper.CreateFakeInstructions(3);
     ViewBag.CurrentPhoneNumber       = "102-625-0254582";
     ViewBag.CurrentEmailMask         = "ste***[email protected]";
     ViewBag.Username = "******";
     return(View());
 }
Exemplo n.º 6
0
 /// <summary>
 /// Gets the Add Bank Information page.
 /// </summary>
 /// <returns>The action result.</returns>
 public ActionResult AddBankInformation()
 {
     ViewBag.DesktopStep1Instructions = MvcHelper.CreateFakeInstructions(4);
     ViewBag.DesktopStep2Instructions = MvcHelper.CreateFakeInstructions(2);
     ViewBag.DesktopStep3Instructions = MvcHelper.CreateFakeInstructions(2);
     ViewBag.DesktopStep4Instructions = MvcHelper.CreateFakeInstructions(2);
     ViewBag.MobileInstructions       = MvcHelper.CreateFakeInstructions(3);
     ViewBag.CurrentPhoneNumber       = "+102-652-985204";
     ViewBag.CurrentEmailMask         = "st****[email protected]";
     ViewBag.Username = "******";
     return(View());
 }
Exemplo n.º 7
0
        /// <summary>
        /// Gets the Login Credentials page.
        /// </summary>
        /// <returns>The action result.</returns>
        public ActionResult LoginCredentials()
        {
            var model = new LoginModel
            {
                Username = "******",
                Password = "******"
            };

            ViewBag.DesktopStep1Instructions = MvcHelper.CreateFakeInstructions(4);
            ViewBag.DesktopStep2Instructions = MvcHelper.CreateFakeInstructions(2);
            ViewBag.MobileInstructions       = MvcHelper.CreateFakeInstructions(3);
            return(View(model));
        }
Exemplo n.º 8
0
        /// <summary>
        /// Gets the Edit Employee Phone page.
        /// </summary>
        /// <returns>The action result.</returns>
        public ActionResult EditEmployeePhone()
        {
            var model = new ChangeEmployeePhoneModel
            {
                EmployeeName       = "Employee Name A",
                CurrentPhoneNumber = "102-625-0254582"
            };

            ViewBag.DesktopStep1Instructions = MvcHelper.CreateFakeInstructions(4);
            ViewBag.DesktopStep2Instructions = MvcHelper.CreateFakeInstructions(2);
            ViewBag.MobileInstructions       = MvcHelper.CreateFakeInstructions(3);
            return(View(model));
        }