public IHttpActionResult Get(Guid guid) { var result = _repository.Read(guid); if (result == null) { return(NotFound()); } return(Ok(result)); }