protected void gvRelatedJob_RowCommand(object sender, GridViewCommandEventArgs e)
 {
     try
     {
         BLL_VET_Index objBLLIndx = new BLL_VET_Index();
         int           OBSJobID   = UDFLib.ConvertToInteger(e.CommandArgument.ToString());
         int           res        = objBLLIndx.VET_Upd_UnlinkWorklistJobs(OBSJobID, UDFLib.ConvertToInteger(Session["USERID"].ToString()));
         VET_Get_ObsRelatedJobs();
     }
     catch (Exception ex)
     {
         UDFLib.WriteExceptionLog(ex);
     }
 }