public void PopulateInProgressOrdersGridView() { int workerID = Convert.ToInt32(Session["WorkerID"]); OrderService os = new OrderService(); this.GridViewInProgressOrders.DataSource = os.GetOrdersInProgressForWorker(workerID); this.GridViewInProgressOrders.DataBind(); }