Example #1
0
 ///<summary>
 /// Returns a value indicating whether this instance is equal to a specified object using value semantics.
 ///</summary>
 ///<param name="toObject">An object to compare to this instance.</param>
 ///<returns>true if toObject is a <see cref="JobCandidateBase"/> and has the same value as this instance; otherwise, false.</returns>
 public virtual bool Equals(JobCandidateBase toObject)
 {
     if (toObject == null)
     {
         return(false);
     }
     return(ValueEquals(this, toObject));
 }
Example #2
0
        /// <summary>
        /// Initializes a new instance of the JobCandidateKey class.
        /// </summary>
        public JobCandidateKey(JobCandidateBase entity)
        {
            this.Entity = entity;

            #region Init Properties

            if (entity != null)
            {
                this.JobCandidateId = entity.JobCandidateId;
            }

            #endregion
        }
Example #3
0
        ///<summary>
        /// Determines whether the specified <see cref="JobCandidateBase"/> instances are considered equal using value semantics.
        ///</summary>
        ///<param name="Object1">The first <see cref="JobCandidateBase"/> to compare.</param>
        ///<param name="Object2">The second <see cref="JobCandidateBase"/> 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 ValueEquals(JobCandidateBase Object1, JobCandidateBase 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.JobCandidateId != Object2.JobCandidateId)
            {
                equal = false;
            }
            if (Object1.EmployeeId != null && Object2.EmployeeId != null)
            {
                if (Object1.EmployeeId != Object2.EmployeeId)
                {
                    equal = false;
                }
            }
            else if (Object1.EmployeeId == null ^ Object2.EmployeeId == null)
            {
                equal = false;
            }
            if (Object1.Resume != null && Object2.Resume != null)
            {
                if (Object1.Resume != Object2.Resume)
                {
                    equal = false;
                }
            }
            else if (Object1.Resume == null ^ Object2.Resume == null)
            {
                equal = false;
            }
            if (Object1.ModifiedDate != Object2.ModifiedDate)
            {
                equal = false;
            }

            return(equal);
        }