| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Core
- {
- public abstract class BaseEntity
- {
- /// <summary>
- /// Gets or sets the entity identifier
- /// </summary>
- public int Id { get; set; }
- public override bool Equals(object obj)
- {
- return Equals(obj as BaseEntity);
- }
- private static bool IsTransient(BaseEntity obj)
- {
- return obj != null && Equals(obj.Id, default(int));
- }
- private Type GetUnproxiedType()
- {
- return GetType();
- }
- public virtual bool Equals(BaseEntity other)
- {
- if (other == null)
- return false;
- if (ReferenceEquals(this, other))
- return true;
- if (!IsTransient(this) &&
- !IsTransient(other) &&
- Equals(Id, other.Id))
- {
- var otherType = other.GetUnproxiedType();
- var thisType = GetUnproxiedType();
- return thisType.IsAssignableFrom(otherType) ||
- otherType.IsAssignableFrom(thisType);
- }
- return false;
- }
- public override int GetHashCode()
- {
- if (Equals(Id, default(int)))
- return base.GetHashCode();
- return Id.GetHashCode();
- }
- public static bool operator ==(BaseEntity x, BaseEntity y)
- {
- return Equals(x, y);
- }
- public static bool operator !=(BaseEntity x, BaseEntity y)
- {
- return !(x == y);
- }
- }
- }
|