public virtual KefDownloadContainer KefDownloadSelectAll()
 {
     TraceCallEnterEvent.Raise();
       try
       {
     KefDownloadContainer result;
     DataSet entitySet = m_DataContext.ndihdKefDownloadSelectAll();
     result = new KefDownloadContainer(entitySet.Tables[0]);
     TraceCallReturnEvent.Raise();
     return result;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }
 public virtual KefDownloadContainer SelectChildrenByKefWebDataOfKefDownload(DBGuid IDVal)
 {
     TraceCallEnterEvent.Raise();
       try
       {
     KefDownloadContainer result;
     DataSet entitySet = m_DataContext.ndihdKefWebDataOfKefDownloadSelectBy(IDVal);
     result = new KefDownloadContainer(entitySet.Tables[0]);
     TraceCallReturnEvent.Raise();
     return result;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }