예제 #1
0
        /// <summary>
        /// Default constructor
        /// </summary>
        /// <remarks>
        ///  Revision History
        ///  MM/DD/YY Who Version Issue# Description
        ///  -------- --- ------- ------ ---------------------------------------------
        ///  08/25/08 mah 9.50.00		Created
        ///
        /// </remarks>
        public LoadProfileCollection()
        {
            m_lstDataSources = new List <LoadProfileDataSource>();

            m_nIntervalLength     = new CachedInt();
            m_nNumProfileChannels = new CachedInt();
            m_dtProfileStartTime  = new CachedDate();
            m_dtProfileEndTime    = new CachedDate();
            m_dtDSTStartTime      = new CachedDate();
            m_dtDSTStopTime       = new CachedDate();
        }
예제 #2
0
 protected bool Equals(CachedInt other)
 {
     return(other != null && Value == other.Value);
 }