コード例 #1
0
   // -------------------------------------------------------------------------------------
   /// <summary>
   /// Copy constructor.
   /// </summary>
   /// <param name="ProgramCategoryRefVal">Value of 'cProgramCategoryRef' field</param>
   /// <param name="ProgramRefVal">Value of 'uProgramRef' field</param>
   /// <param name="QuestionFormRefVal">Value of 'uQuestionFormRef' field</param>
   /// <param name="origInstance">Original document data to copy.</param>
   // -------------------------------------------------------------------------------------
   public ProgramQuestionFormBase(DBString ProgramCategoryRefVal,
 DBGuid ProgramRefVal,
 DBGuid QuestionFormRefVal,
 ProgramQuestionFormBase origInstance)
       : base()
   {
       this.m_ProgramCategoryRef = ProgramCategoryRefVal;
         this.m_ProgramRef = ProgramRefVal;
         this.m_QuestionFormRef = QuestionFormRefVal;
         this.m_LastModifiedDate = origInstance.m_LastModifiedDate;
         this.m_DecidedDate = origInstance.m_DecidedDate;
   }
コード例 #2
0
 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Copy constructor.
 /// </summary>
 /// <param name="origInstance">Original document data to copy.</param>
 // -------------------------------------------------------------------------------------
 public ProgramQuestionFormBase(ProgramQuestionFormBase origInstance)
     : base()
 {
     this.m_ProgramCategoryRef = origInstance.m_ProgramCategoryRef;
       this.m_ProgramRef = origInstance.m_ProgramRef;
       this.m_QuestionFormRef = origInstance.m_QuestionFormRef;
       this.m_LastModifiedDate = origInstance.m_LastModifiedDate;
       this.m_DecidedDate = origInstance.m_DecidedDate;
 }