Beispiel #1
0
        private void BackHere()
        {
            string sql = JobRepo.GetAllJobOfCompany(this.Id);

            this.PopulateDGVPostedJobs(sql);
            this.Visible = true;
        }
Beispiel #2
0
        public CompanyForm(Delegates.BackToHome backHome, DataSet ds)
        {
            InitializeComponent();
            this.BackHome = backHome;
            this.Ds       = ds;
            SetAll();
            string sql = JobRepo.GetAllJobOfCompany(this.Id);

            this.PopulateDGVPostedJobs(sql);
        }