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))
     });
 }
 public CandidateLogin()
 {
     InitializeComponent();
     logindbhelper     = new LoginDb();
     candidatedbhelper = new CandidateDb();
 }
Пример #3
0
 public CandidateSignup()
 {
     InitializeComponent();
     candidatedbhelper = new CandidateDb();
 }
Пример #4
0
 public NucesJobAccountController()
 {
     logindbhelper     = new LoginDb();
     candidatedbhelper = new CandidateDb();
     employeedbhelper  = new EmployeeDb();
 }