Ejemplo n.º 1
0
 private void TxtSearchJobtitle_TextChanged(object sender, EventArgs e)
 {
     this.Sql = JobRepo.SearchByTitle(this.txtSearchJobtitle.Text);
     this.PopulateDGVJob(this.Sql);
 }
Ejemplo n.º 2
0
        private void TxtSearchPostedJobs_TextChanged(object sender, EventArgs e)
        {
            string sql = JobRepo.SearchByTitle(this.Id, this.txtSearchPostedJobs.Text);

            this.PopulateDGVPostedJobs(sql);
        }