Exemple #1
0
        /// <summary>
        /// This method returns a S88Procedures array.
        /// </summary>
        public S88Phase[] GetS88PhaseArray()
        {
            int length = GetInt32Range(-1, m_context.MaxArrayLength);

            if (length < 0)
            {
                return null;
            }

            S88Phase[] value = new S88Phase[length];

            for (int ii = 0; ii < value.Length; ii++)
            {
                value[ii] = GetS88Phase();
            }

            return value;
        }
Exemple #2
0
        /// <summary>
        /// This method returns S88Procedures
        /// </summary>
        public S88Phase GetS88Phase()
        {
            S88Phase phase = new S88Phase();

            phase.PhaseName = GetString();
            phase.StartTime = GetDateTime();
            phase.EndTime = GetDateTime();

            return phase;
        }