public bool PostApplied(AppliedDAO app)
        {
            AppliedServiceClient client = new AppliedServiceClient();

            try
            {
                bool result = client.CreateApplied(app);
                return result;
            }
            catch (FaultException<KaskServiceException> e)
            {
                throw new HttpException(e.Message);
            }
        }