Exemplo n.º 1
0
        /// <summary>
        ///
        /// </summary>
        /// <returns></returns>
        public override int GetHashCode()
        {
            int hash = 17;

            hash = hash * 23 + Id.GetHashCode();
            hash = hash * 23 + OrgId.GetHashCode();
            hash = hash * 23 + TimeZone.GetHashCode();
            hash = hash * 23 + Theme.GetHashCode();

            if (HomeDashboardId.HasValue)
            {
                hash = hash * 23 + HomeDashboardId.GetHashCode();
            }

            return(hash);
        }
Exemplo n.º 2
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        public override bool Equals(object obj)
        {
            if (null == obj)
            {
                return(false);
            }

            if (object.ReferenceEquals(this, obj))
            {
                return(true);
            }

            var p = obj as Preferences;

            if (null == p)
            {
                return(false);
            }

            if (!Id.Equals(p.Id))
            {
                return(false);
            }

            if (!OrgId.Equals(p.OrgId))
            {
                return(false);
            }

            if (!HomeDashboardId.Equals(p.HomeDashboardId))
            {
                return(false);
            }

            if (!TimeZone.Equals(p.TimeZone))
            {
                return(false);
            }

            if (!Theme.Equals(p.Theme))
            {
                return(false);
            }

            return(true);
        }