Exemplo n.º 1
0
        public IHttpActionResult GetAccount(string id)
        {
            AccountDTO account = bizAccount.findById(id);

            if (account == null)
            {
                return(NotFound());
            }

            return(Ok(account));
        }