Beispiel #1
0
 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Copy constructor.
 /// </summary>
 /// <param name="KeyVal">Value of 'cKey' field</param>
 /// <param name="origInstance">Original document data to copy.</param>
 // -------------------------------------------------------------------------------------
 public SettingsBase(DBString KeyVal,
                 SettingsBase origInstance)
 {
     m_Key = KeyVal;
       m_Name = origInstance.m_Name;
       m_Value = origInstance.m_Value;
       m_CreatedDate = origInstance.m_CreatedDate;
 }
Beispiel #2
0
 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Copy constructor.
 /// </summary>
 /// <param name="origInstance">Original document data to copy.</param>
 // -------------------------------------------------------------------------------------
 public SettingsBase(SettingsBase origInstance)
 {
     m_Key = origInstance.m_Key;
       m_Name = origInstance.m_Name;
       m_Value = origInstance.m_Value;
       m_CreatedDate = origInstance.m_CreatedDate;
 }