// Load Combo box with Request ID's for only selected Employee
 public DataSet GetReqComboBoxItems(int EmpID)
 {
     try
     {
         DataSet ds = new DataSet();
         ds = sd.GetReqComboBoxItems(EmpID);
         return(ds);
     }
     catch (Exception)
     {
         throw;
     }
 }