Ejemplo n.º 1
0
        // GET: BankAccount
        public ActionResult Index(int?customerId)
        {
            ViewData.Model = _repoBankAccount.GetBankAccounts(customerId: customerId);

            SetViewBagCustomers();

            return(View());
        }