Exemplo n.º 1
0
        public IHttpActionResult Get(int id)
        {
            var question = Question.MapFromDTO(dataComponent.GetQuestion(id));

            if (question == null)
            {
                return(NotFound());
            }
            else
            {
                return(Ok(question));
            }
        }