Exemplo n.º 1
0
        public MCQuestionDAO GetMCQuestion(int id)
        {
            MCQuestionServiceClient client = new MCQuestionServiceClient();

            try
            {
                MCQuestionDAO result = client.GetMCQuestionByID(id);
                return result;
            }
            catch (FaultException<KaskServiceException> e)
            {
                throw new HttpException(e.Message);
            }
        }