Esempio n. 1
0
 public UpdateCandidateview_ViewModel(ICandidateService candidateService, ICandidateQualificationService candidateQualificationService, IAddressCandidateService addressCandidateService, IAddressService addressService, IQualificationsService qualificationsService)
 {
     CandidateService              = candidateService;
     QualificationsService         = qualificationsService;
     CandidateQualificationService = candidateQualificationService;
     AddressCandidateService       = addressCandidateService;
     AddressService = addressService;
     Messenger.Default.Register <LoadUpdateCandidateViewMessage>(this, NotifyMe);
 }
Esempio n. 2
0
 public IndividualCandidateDetailsView_ViewModel(ICandidateService candidateService, IAddressCandidateService addressCandidateService, ICandidateSessionService candidateSessionService, ICandidateQualificationService candidateQualificationService, IJobHistoryService jobHistoryService)
 {
     CandidateService = candidateService;
     Messenger.Default.Register <ViewCandidateDetailsMessage>(this, NotifyMe);
     CandidateService              = candidateService;
     AddressCandidateService       = addressCandidateService;
     CandidateSessionService       = candidateSessionService;
     CandidateQualificationService = candidateQualificationService;
     JobHistoryService             = jobHistoryService;
 }