public IHttpActionResult GetAccount(string id) { AccountDTO account = bizAccount.findById(id); if (account == null) { return(NotFound()); } return(Ok(account)); }