public Applicant getApplicant(string proFileID) { Profile profileItem = _profileRepository.GetSingleByCondition(x => x.Id == proFileID); return(_applicantRepository.GetSingleByCondition(x => x.Id == profileItem.ApplicantID)); }