Ejemplo n.º 1
0
 /// <summary>
 /// Display the jobs that related to this specific observation
 /// </summary>
 /// <param name="FilterJobsBy">Passed observation ID</param>
 /// <param name="Mode">Mode is Observation</param>
 protected void BindObservationJobs(int FilterJobsBy, string Mode)
 {
     try
     {
         DataTable dt = ObjBLLIndx.VET_Get_Vetting_Jobs_Details(FilterJobsBy, Mode);
         GvObservationJobs.DataSource = dt;
         GvObservationJobs.DataBind();
     }
     catch (Exception ex)
     {
         UDFLib.WriteExceptionLog(ex);
     }
 }