public CandidateShowALlVacancies()
 {
     InitializeComponent();
     jobdbhelper        = new JobOpeningDb();
     candidatedbhelper  = new CandidateDb();
     eapplicationhelper = new EcandidateApplicationDb();
     dt.Columns.AddRange(new DataColumn[7] {
         new DataColumn("JobID", typeof(int)), new DataColumn("MinExperience", typeof(int)), new DataColumn("Job Description", typeof(string)), new DataColumn("Date Posted", typeof(string)), new DataColumn("Expected Start Date", typeof(string)), new DataColumn("Designation", typeof(string)), new DataColumn("Department", typeof(string))
     });
 }
Пример #2
0
 public ApplicantsTable()
 {
     InitializeComponent();
     dbhelper = new EcandidateApplicationDb();
 }