public bool IsTheSame(MemberProfile other) { if (other == null) return false; return this.FullName==other.FullName && this.EmailAccount==other.EmailAccount && this.ContactData==other.ContactData && this.CompanyName==other.CompanyName && this.CanSeeProposalValues==other.CanSeeProposalValues && this.AuthorizationProvider==other.AuthorizationProvider && this.DayOccupation==other.DayOccupation && this.IsFactoryOwner==other.IsFactoryOwner && this.Skills==other.Skills && this.CreateBy==other.CreateBy && this.MemberUId==other.MemberUId; }