예제 #1
0
        /// <summary>
        /// Compares two instances of this object.
        /// </summary>
        /// <param name="CDRId1">A CDRId.</param>
        /// <param name="CDRId2">Another CDRId.</param>
        /// <returns>true|false</returns>
        public static Boolean operator >(CDR_Id CDRId1, CDR_Id CDRId2)
        {
            if ((Object)CDRId1 == null)
            {
                throw new ArgumentNullException("The given CDRId1 must not be null!");
            }

            return(CDRId1.CompareTo(CDRId2) > 0);
        }
예제 #2
0
        /// <summary>
        /// Compares two instances of this object.
        /// </summary>
        /// <param name="CDRId1">A charge detail record identification.</param>
        /// <param name="CDRId2">Another charge detail record identification.</param>
        /// <returns>true|false</returns>
        public static Boolean operator >(CDR_Id CDRId1,
                                         CDR_Id CDRId2)

        => CDRId1.CompareTo(CDRId2) > 0;