FirmTracker-Server/nHibernate/Reports/ReportTransaction.cs

37 lines
1.0 KiB
C#
Raw Normal View History

using FirmTracker_Server.nHibernate.Transactions;
namespace FirmTracker_Server.nHibernate.Reports
{
public class ReportTransaction
{
2024-06-08 15:04:52 +02:00
//public virtual int Id { get; set; }
public virtual Report Report { get; set; }
public virtual Transaction Transaction { get; set; }
public override bool Equals(object obj)
{
if (obj == null || GetType() != obj.GetType())
2024-06-08 15:04:52 +02:00
{
return false;
2024-06-08 15:04:52 +02:00
}
var other = (ReportTransaction)obj;
2024-06-08 15:04:52 +02:00
return Report != null && Transaction != null &&
Report.Id == other.Report.Id &&
Transaction.Id == other.Transaction.Id;
}
public override int GetHashCode()
{
2024-06-08 15:04:52 +02:00
unchecked // Overflow is fine, just wrap
{
int hash = 17;
hash = hash * 23 + (Report?.Id.GetHashCode() ?? 0);
hash = hash * 23 + (Transaction?.Id.GetHashCode() ?? 0);
return hash;
}
}
}
}