private void memBazarHistory_Click(object sender, EventArgs e) { SeeBazarHistory bazarHistory = new SeeBazarHistory(this); bazarHistory.Show(this); this.Hide(); }
private void button3_Click(object sender, EventArgs e) { if (back == true) { this.Hide(); SeeBazarHistory sbh = new SeeBazarHistory(new Manager()); sbh.Show(); } else if (backNot == true) { this.Hide(); Notification nf = new Notification(); nf.Show(); } else { this.Hide(); AdminSession AS = new AdminSession(); AS.Show(); } }
public EditBzaar(SeeBazarHistory seeBazarHistory) { this.seeBazarHistory = seeBazarHistory; back = true; InitializeComponent(); }