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
24 lines
604 B
C#
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;
|
|
}
|
|
}
|
|
}
|