Inheritance: System.IComparable, System.ICloneable, INotifyPropertyChanged
コード例 #1
0
 ///<summary>
 /// Returns a value indicating whether this instance is equal to a specified object.
 ///</summary>
 ///<param name="toObject">An object to compare to this instance.</param>
 ///<returns>true if toObject is a <see cref="VEmployeeDepartmentBase"/> and has the same value as this instance; otherwise, false.</returns>
 public virtual bool Equals(VEmployeeDepartmentBase toObject)
 {
     if (toObject == null)
     {
         return(false);
     }
     return(Equals(this, toObject));
 }
コード例 #2
0
		///<summary>
		/// Determines whether the specified <see cref="VEmployeeDepartmentBase"/> instances are considered equal.
		///</summary>
		///<param name="Object1">The first <see cref="VEmployeeDepartmentBase"/> to compare.</param>
		///<param name="Object2">The second <see cref="VEmployeeDepartmentBase"/> to compare. </param>
		///<returns>true if Object1 is the same instance as Object2 or if both are null references or if objA.Equals(objB) returns true; otherwise, false.</returns>
		public static bool Equals(VEmployeeDepartmentBase Object1, VEmployeeDepartmentBase Object2)
		{
			// both are null
			if (Object1 == null && Object2 == null)
				return true;

			// one or the other is null, but not both
			if (Object1 == null ^ Object2 == null)
				return false;

			bool equal = true;
			if (Object1.EmployeeId != Object2.EmployeeId)
				equal = false;
			if (Object1.Title != null && Object2.Title != null )
			{
				if (Object1.Title != Object2.Title)
					equal = false;
			}
			else if (Object1.Title == null ^ Object1.Title == null )
			{
				equal = false;
			}
			if (Object1.FirstName != Object2.FirstName)
				equal = false;
			if (Object1.MiddleName != null && Object2.MiddleName != null )
			{
				if (Object1.MiddleName != Object2.MiddleName)
					equal = false;
			}
			else if (Object1.MiddleName == null ^ Object1.MiddleName == null )
			{
				equal = false;
			}
			if (Object1.LastName != Object2.LastName)
				equal = false;
			if (Object1.Suffix != null && Object2.Suffix != null )
			{
				if (Object1.Suffix != Object2.Suffix)
					equal = false;
			}
			else if (Object1.Suffix == null ^ Object1.Suffix == null )
			{
				equal = false;
			}
			if (Object1.JobTitle != Object2.JobTitle)
				equal = false;
			if (Object1.Department != Object2.Department)
				equal = false;
			if (Object1.GroupName != Object2.GroupName)
				equal = false;
			if (Object1.StartDate != Object2.StartDate)
				equal = false;
			return equal;
		}
コード例 #3
0
		///<summary>
		/// Returns a value indicating whether this instance is equal to a specified object.
		///</summary>
		///<param name="toObject">An object to compare to this instance.</param>
		///<returns>true if toObject is a <see cref="VEmployeeDepartmentBase"/> and has the same value as this instance; otherwise, false.</returns>
		public virtual bool Equals(VEmployeeDepartmentBase toObject)
		{
			if (toObject == null)
				return false;
			return Equals(this, toObject);
		}
コード例 #4
0
        ///<summary>
        /// Determines whether the specified <see cref="VEmployeeDepartmentBase"/> instances are considered equal.
        ///</summary>
        ///<param name="Object1">The first <see cref="VEmployeeDepartmentBase"/> to compare.</param>
        ///<param name="Object2">The second <see cref="VEmployeeDepartmentBase"/> to compare. </param>
        ///<returns>true if Object1 is the same instance as Object2 or if both are null references or if objA.Equals(objB) returns true; otherwise, false.</returns>
        public static bool Equals(VEmployeeDepartmentBase Object1, VEmployeeDepartmentBase Object2)
        {
            // both are null
            if (Object1 == null && Object2 == null)
            {
                return(true);
            }

            // one or the other is null, but not both
            if (Object1 == null ^ Object2 == null)
            {
                return(false);
            }

            bool equal = true;

            if (Object1.EmployeeId != Object2.EmployeeId)
            {
                equal = false;
            }
            if (Object1.Title != null && Object2.Title != null)
            {
                if (Object1.Title != Object2.Title)
                {
                    equal = false;
                }
            }
            else if (Object1.Title == null ^ Object1.Title == null)
            {
                equal = false;
            }
            if (Object1.FirstName != Object2.FirstName)
            {
                equal = false;
            }
            if (Object1.MiddleName != null && Object2.MiddleName != null)
            {
                if (Object1.MiddleName != Object2.MiddleName)
                {
                    equal = false;
                }
            }
            else if (Object1.MiddleName == null ^ Object1.MiddleName == null)
            {
                equal = false;
            }
            if (Object1.LastName != Object2.LastName)
            {
                equal = false;
            }
            if (Object1.Suffix != null && Object2.Suffix != null)
            {
                if (Object1.Suffix != Object2.Suffix)
                {
                    equal = false;
                }
            }
            else if (Object1.Suffix == null ^ Object1.Suffix == null)
            {
                equal = false;
            }
            if (Object1.JobTitle != Object2.JobTitle)
            {
                equal = false;
            }
            if (Object1.Department != Object2.Department)
            {
                equal = false;
            }
            if (Object1.GroupName != Object2.GroupName)
            {
                equal = false;
            }
            if (Object1.StartDate != Object2.StartDate)
            {
                equal = false;
            }
            return(equal);
        }