Beispiel #1
0
 private void BtnEdit_Click(object sender, EventArgs e)
 {
     Delegates.BackToCompany  back    = this.BackHere;
     Delegates.DestroyCompany destroy = this.Destroyform;
     new SignupForm(back, destroy, this.BackHome, this.Ds).Visible = true;
     this.Visible = false;
 }
Beispiel #2
0
        private void DgvPostedJobs_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            Delegates.BackToCompany back = this.BackHere;
            DataGridViewRow         row  = this.dgvPostedJobs.CurrentRow;

            new JobForm(row, back).Visible = true;
            this.Visible = false;
        }
Beispiel #3
0
 public JobCircularForm(Delegates.BackToCompany back, DataGridViewRow row)
 {
     InitializeComponent();
     this.BackToCompany = back;
     this.Row           = row;
     this.Purpose       = "update";
     this.SetAll();
 }
Beispiel #4
0
 public JobCircularForm(Delegates.BackToCompany back, string companyId)
 {
     InitializeComponent();
     this.BackToCompany = back;
     this.CompanyId     = companyId;
     this.JobId         = DataAccess.SearchMaxJobID() + 1;
     this.Purpose       = "addJob";
 }
Beispiel #5
0
 public SearchForm(Delegates.BackToCompany backToCompany)
 {
     InitializeComponent();
     this.BackToCompany        = backToCompany;
     this.CurrentUser          = "******";
     this.pnlJobSeeker.Visible = true;
     this.PopulateDefaultDGV();
     this.Text = "Search Peoples";
 }
Beispiel #6
0
 public JobForm(DataGridViewRow row, Delegates.BackToCompany back)
 {
     InitializeComponent();
     this.Row           = row;
     this.BackToCompany = back;
     this.SetAll();
     this.pnlVewPeoples.Visible = true;
     this.BackForm = "Company";
 }
Beispiel #7
0
 public JobSeekerForm(Delegates.BackToCompany back, DataGridViewRow row)
 {
     InitializeComponent();
     this.BackToCompany = back;
     this.SetAll(row);
     this.pnlLogout.Visible = false;
     this.BackPage          = "Company";
     this.Text = "Curriculum Vitae";
 }
Beispiel #8
0
 public SignupForm(Delegates.BackToCompany back, Delegates.DestroyCompany destroy, Delegates.BackToHome backHome, DataSet ds)
 {
     InitializeComponent();
     this.pnlCompanyOrJobSeeker.Visible = false;
     this.pnlCompany.Visible            = true;
     this.pnlJobSeeker.Visible          = false;
     this.backToCompany  = back;
     this.DestroyCompany = destroy;
     this.Back           = backHome;
     this.Purpose        = "update";
     this.Ds             = ds;
     this.setCompany();
     this.Text = "Update Account";
 }
Beispiel #9
0
 private void BtnSearchJobSeekers_Click(object sender, EventArgs e)
 {
     Delegates.BackToCompany back = this.BackHere;
     new SearchForm(back).Visible = true;
     this.Visible = false;
 }
Beispiel #10
0
 private void BtnPostJobCirculer_Click(object sender, EventArgs e)
 {
     Delegates.BackToCompany backHere = this.BackHere;
     new JobCircularForm(BackHere, this.Id).Visible = true;
     this.Visible = false;
 }