Пример #1
0
        public JobOpeningDAO GetJobOpening(int id)
        {
            JobOpeningServiceClient client = new JobOpeningServiceClient();

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