public AppliedDAO GetApplied(int id)
        {
            AppliedServiceClient client = new AppliedServiceClient();

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