예제 #1
0
 public virtual JobOfferAttachmentContainer SelectChildrenByAttachmentOfJobOffer(DBGuid IDVal)
 {
     TraceCallEnterEvent.Raise();
       try
       {
     JobOfferAttachmentContainer result;
     DataSet entitySet = m_DataContext.ndihdAttachmentOfJobOfferSelectBy(IDVal);
     result = new JobOfferAttachmentContainer(entitySet.Tables[0]);
     TraceCallReturnEvent.Raise();
     return result;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }
 public virtual JobOfferAttachmentContainer JobOfferAttachmentSelectAll()
 {
     TraceCallEnterEvent.Raise();
       try
       {
     JobOfferAttachmentContainer result;
     DataSet entitySet = m_DataContext.ndihdJobOfferAttachmentSelectAll();
     result = new JobOfferAttachmentContainer(entitySet.Tables[0]);
     TraceCallReturnEvent.Raise();
     return result;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }