Ejemplo n.º 1
0
 public void LoadPerson()
 {
     try
     {
         Session["BookingPersonList"] = BLLEmployeePosting.GetEmployeeWithPostingList(null);
     }
     catch (Exception ex)
     {
         throw (ex);
     }
 }
Ejemplo n.º 2
0
 public void LoadPerson()
 {
     try
     {
         Session["venueBookedPersonList"] = BLLEmployeePosting.GetEmployeeWithPostingList(null);
     }
     catch (Exception ex)
     {
         this.lblStatusMessageTitle.Text = "Error Status";
         this.lblStatusMessage.Text      = ex.Message;
         this.programmaticModalPopup.Show();
     }
 }