Example #1
0
        // GET: api/client
        public IHttpActionResult Get()
        {
            var clients = _appClient.GetAll();

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

            return(Ok(clients));
        }