public virtual EDocumentCommendationContainer SelectChildrenByCommendationOfEDocument(DBGuid IDVal) { TraceCallEnterEvent.Raise(); try { EDocumentCommendationContainer result; DataSet entitySet = m_DataContext.ndihdCommendationOfEDocumentSelectBy(IDVal); result = new EDocumentCommendationContainer(entitySet.Tables[0]); TraceCallReturnEvent.Raise(); return result; } catch (Exception ex) { ExceptionManager.Publish(ex); TraceCallReturnEvent.Raise(false); throw; } }
public virtual EDocumentCommendationContainer EDocumentCommendationSelectAll() { TraceCallEnterEvent.Raise(); try { EDocumentCommendationContainer result; DataSet entitySet = m_DataContext.ndihdEDocumentCommendationSelectAll(); result = new EDocumentCommendationContainer(entitySet.Tables[0]); TraceCallReturnEvent.Raise(); return result; } catch (Exception ex) { ExceptionManager.Publish(ex); TraceCallReturnEvent.Raise(false); throw; } }