///<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="CallRolesBase"/> and has the same value as this instance; otherwise, false.</returns>
 public virtual bool Equals(CallRolesBase toObject)
 {
     if (toObject == null)
     {
         return(false);
     }
     return(ValueEquals(this, toObject));
 }
        /// <summary>
        /// Initializes a new instance of the CallRolesKey class.
        /// </summary>
        public CallRolesKey(CallRolesBase entity)
        {
            this.Entity = entity;

            #region Init Properties

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

            #endregion
        }
        ///<summary>
        /// Determines whether the specified <see cref="CallRolesBase"/> instances are considered equal using value semantics.
        ///</summary>
        ///<param name="Object1">The first <see cref="CallRolesBase"/> to compare.</param>
        ///<param name="Object2">The second <see cref="CallRolesBase"/> 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(CallRolesBase Object1, CallRolesBase 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.CallRoleId != Object2.CallRoleId)
            {
                equal = false;
            }
            if (Object1.CallUserId != null && Object2.CallUserId != null)
            {
                if (Object1.CallUserId != Object2.CallUserId)
                {
                    equal = false;
                }
            }
            else if (Object1.CallUserId == null ^ Object2.CallUserId == null)
            {
                equal = false;
            }
            if (Object1.TocallUserId != null && Object2.TocallUserId != null)
            {
                if (Object1.TocallUserId != Object2.TocallUserId)
                {
                    equal = false;
                }
            }
            else if (Object1.TocallUserId == null ^ Object2.TocallUserId == null)
            {
                equal = false;
            }
            if (Object1.CreateTime != null && Object2.CreateTime != null)
            {
                if (Object1.CreateTime != Object2.CreateTime)
                {
                    equal = false;
                }
            }
            else if (Object1.CreateTime == null ^ Object2.CreateTime == null)
            {
                equal = false;
            }
            if (Object1.Status != null && Object2.Status != null)
            {
                if (Object1.Status != Object2.Status)
                {
                    equal = false;
                }
            }
            else if (Object1.Status == null ^ Object2.Status == null)
            {
                equal = false;
            }

            return(equal);
        }