public ActionResult <IEnumerable <Account> > Get() { var accounts = _coreRepository.GetAccounts(); return(Ok(accounts)); }