Ejemplo n.º 1
0
        public async Task <ActionResult> NewAccount(Guid CustomerID, decimal StartingBalance = 0)
        {
            _apiHelper.InsertNewAccount(CustomerID, StartingBalance);

            Management_Accounts_VM VM = new Management_Accounts_VM(_apiHelper, CustomerID);

            return(View("Accounts", VM));
        }
Ejemplo n.º 2
0
        public async Task <ActionResult> Accounts(Guid CustomerID)
        {
            Management_Accounts_VM VM = new Management_Accounts_VM(_apiHelper, CustomerID);

            return(View(VM));
        }