Esempio n. 1
0
        public IEnumerable<ApplicationDAO> GetApplications()
        {
            ApplicationServiceClient client = new ApplicationServiceClient();

            try
            {
                IEnumerable<ApplicationDAO> result = client.GetApplications();
                return result;
            }
            catch (FaultException<KaskServiceException> e)
            {
                throw new HttpException(e.Message);
            }
        }