Files
BeWoPlaner/Shared/DataContracts/ClientPartials/ContactDC.cs
Lyndon Jetten 743fa0ef46 Mobilversion:
Unterschriftenfunktionsprototyp soweit fertig
Alle Dateien werden von unserem Server bereitgestellt
Code-Optimierungen
Aufklappbare Elemente haben jetzt ein Pfeilicon

Fat-Client:
SettingsKeys eingeführt
Aufgaben nur noch im Hilfeplan anlegbar
Debug-Ausgabe
2021-03-17 18:44:40 +01:00

24 lines
604 B
C#

namespace BS.Shared.DataContracts
{
public partial class ContactDC
{
public override bool Equals(object obj)
{
if(this == obj)
{
return true;
}
if(obj is ContactDC contact)
{
return Equals(ContactOID, contact.ContactOID) &&
ContactType == contact.ContactType &&
Equals(ContactValue, contact.ContactValue) &&
Equals(ContactVersion, contact.ContactVersion);
}
return false;
}
}
}