コード例 #1
0
        //
        // GET: /BankAccount/
        public ActionResult Index(string clientId, string practiceId)
        {
            BankAccountModel model = new BankAccountModel();
            model.Load(new Guid(clientId),new Guid(practiceId));

            return View(model);
        }
コード例 #2
0
        public ActionResult GetBankAccounts(string clientId, string practiceId)
        {
            BankAccountModel model = new BankAccountModel();
            model.Load(new Guid(clientId), new Guid(practiceId));

            return Json(model.BankAccounts, JsonRequestBehavior.AllowGet);
        }