public virtual OrganisationPendingQuestionFormContainer OrganisationPendingQuestionFormSelectAll()
 {
     TraceCallEnterEvent.Raise();
       try
       {
     OrganisationPendingQuestionFormContainer result;
     DataSet entitySet = m_DataContext.ndihdOrganisationPendingQuestionFormSelectAll();
     result = new OrganisationPendingQuestionFormContainer(entitySet.Tables[0]);
     TraceCallReturnEvent.Raise();
     return result;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }
コード例 #2
0
   public virtual OrganisationPendingQuestionFormContainer SelectChildrenByPendingQuestionFormOfOrganisation(
 DBGuid IDVal)
   {
       TraceCallEnterEvent.Raise();
         try
         {
       OrganisationPendingQuestionFormContainer result;
       DataSet entitySet = m_DataContext.ndihdPendingQuestionFormOfOrganisationSelectBy(IDVal);
       result = new OrganisationPendingQuestionFormContainer(entitySet.Tables[0]);
       TraceCallReturnEvent.Raise();
       return result;
         }
         catch (Exception ex)
         {
       ExceptionManager.Publish(ex);
       TraceCallReturnEvent.Raise(false);
       throw;
         }
   }