示例#1
0
        /// <summary>
        /// Implements the business logic to create the null value for this cell value type
        /// </summary>
        /// <returns></returns>
        public static SubGridCellCompositeHeightsRecord Null()
        {
            SubGridCellCompositeHeightsRecord Result = new SubGridCellCompositeHeightsRecord();

            Result.Clear();
            return(Result);
        }
示例#2
0
 public bool Equals(SubGridCellCompositeHeightsRecord other)
 {
     return(FirstHeight == other.FirstHeight &&
            LastHeight == other.LastHeight &&
            LowestHeight == other.LowestHeight &&
            HighestHeight == other.HighestHeight &&
            FirstHeightTime == other.FirstHeightTime &&
            LastHeightTime == other.LastHeightTime &&
            LowestHeightTime == other.LowestHeightTime &&
            HighestHeightTime == other.HighestHeightTime);
 }