Exemple #1
0
        public ActionResult <List <DisplayAccount> > GetAllAccounts()
        {
            List <DisplayAccount> accounts = accountDAO.GetAllDisplayAccounts();

            return(Ok(accounts));
        }