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

            Result.Clear();
            return(Result);
        }
示例#2
0
 public bool Equals(MachineSpeedExtendedRecord other)
 {
     return(Min == other.Min && Max == other.Max);
 }