Beispiel #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 // Revision History
 // MM/DD/YY who Version Issue# Description
 // -------- --- ------- ------ ---------------------------------------
 // 02/13/08 jrf 1.00.00        Created
 public MV90Event(string strEventCode, DateTime dtEventTime, string strExtraData)
 {
     m_strEventCode         = strEventCode;
     m_dtEventTime          = dtEventTime;
     m_strExtraData         = strExtraData;
     m_dicEventDescriptions = new MV90EventDictionary();
 }
Beispiel #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 // Revision History
 // MM/DD/YY who Version Issue# Description
 // -------- --- ------- ------ ---------------------------------------
 // 02/07/08 jrf 1.00.00        Created
 public MV90Event()
 {
     m_strEventCode         = UNKNOWN_EVENT_CODE;
     m_dtEventTime          = new DateTime();
     m_strExtraData         = "";
     m_dicEventDescriptions = new MV90EventDictionary();
 }