Example #1
0
        public ActionResult <IEnumerable <Account> > Get()
        {
            var accounts = _repo.GetAllAccounts();

            return(Ok(accounts));
        }