public EditDeleteSuggestUC(Vacancy vacancy, Profile profile, VacancyBoxUC vbuc)
 {
     InitializeComponent();
     this.vacancy = vacancy;
     this.profile = profile;
     this.vbuc    = vbuc;
 }
Example #2
0
        private void AddPostedVacancies()
        {
            List <Vacancy> vacancyList = control.getVacanciesPosted(userRef);

            foreach (Vacancy vacancy in vacancyList)
            {
                VacancyBoxUC vBoxUC = new VacancyBoxUC(vacancy);
                this.CVview.Children.Add(vBoxUC);
            }
        }
Example #3
0
        private void AddPostedVacancies()
        {
            List <Vacancy> vacancyList = control.getVacanciesPosted(userRef);

            foreach (Vacancy vacancy in vacancyList)
            {
                VacancyBoxUC vBoxUC = new VacancyBoxUC(userRef, vacancy, this);
                this.CVview.Children.Add(vBoxUC);
                PlaceholderTitle.Visibility = Visibility.Hidden;
            }
        }
 public ViewCandidatesWindow(VacancyBoxUC vbUC)
 {
     InitializeComponent();
     addSuggestions(vbUC.skillPanel, vbUC.locationLabel.Content.ToString());
 }