public bool PostEducation(EducationDAO edu) { EducationServiceClient client = new EducationServiceClient(); try { bool result = client.CreateEducation(edu); return result; } catch (FaultException<KaskServiceException> e) { throw new HttpException(e.Message); } }