Beispiel #1
0
        public static ClientCandidate LoadCandidateFull()
        {
            CandidateReponseType reponseType = new CandidateReponseType();

            CandidateLoader.LoadCandidateInfo(reponseType);
            CandidateLoader.LoadWorkProfileInfo(reponseType);
            CandidateLoader.LoadContactInfo(reponseType);

            return(CandidateTranslator.ServiceToBusiness(reponseType));
        }
Beispiel #2
0
        public static ClientCandidate LoadCandidateAndNullWorkProfile()
        {
            CandidateReponseType reponseType = new CandidateReponseType();

            CandidateLoader.LoadCandidateInfo(reponseType);
            CandidateLoader.LoadNullWorkProfileInfo(reponseType);

            reponseType.ContatInfoLoaded = false;
            return(CandidateTranslator.ServiceToBusiness(reponseType));
        }