コード例 #1
0
        // GET: CheckingAccount/Details/5
        public ActionResult Details()
        {
            var checkingAccount = new Models.CheckingAccount {
                AccountNumber = "000432353", FirstName = "Michael", LastName = "Yadingus", Balance = 242
            };

            return(View(checkingAccount));
        }
コード例 #2
0
 // GET: CheckingAccount/Details/5
 // Configure it out to check the detail of the single data account
 public ActionResult Details()
 {
     var balanceQuery = new Models.CheckingAccount
     {
         AccountNumber = "RCE-232-ACC2313",
         FirstName = "Ehsan",
         LastName = "Rafeeque",
         Balance = 4000
     };
     return View(balanceQuery);
 }