Esempio n. 1
0
 //user profile (just the first information of the user profile)
 public String[] selectRecruiteeNames()
 {
     NewRecruiteeService.ServiceWCFClient svc = new NewRecruiteeService.ServiceWCFClient();
     Guid[] recNames = svc.selectRecruiteeNames();
     return Array.ConvertAll(recNames, x => x.ToString());
 }