Example #1
0
        public IHttpActionResult Get(Guid guid)
        {
            var result = _repository.Read(guid);

            if (result == null)
            {
                return(NotFound());
            }
            return(Ok(result));
        }