Files
Lyndon Jetten 8a0ad54ee9 MoK:
- Gruppenbuchung mit nur einem Hilfeplan, aber mehreren Mitarbeitern wird - wie im Fat-Client - als Gruppenbuchung gespeichert. Eine Gruppenbuchung mit einem Hilfeplan und nur einem Mitarbeiter wird weiterhin - wie auch im Fat-Client - als Einzelbuchung gespeichert.

- Der Button "Textbausteine" wird nur angezeigt, wenn auch Textbausteine vorhanden sind.
2022-08-19 13:53:32 +02:00

50 lines
1.4 KiB
C#

using System.Windows.Media;
namespace BS.Shared.DataContracts
{
public partial class TextbausteinDC : IFilterableDC
{
public override bool Equals(object obj)
{
if (obj is TextbausteinDC y)
{
if(TextbausteinOid is null && y.TextbausteinOid is null)
{
return GetHashCode() == y.GetHashCode();
}
if (TextbausteinOid.HasValue && y.TextbausteinOid.HasValue)
{
return TextbausteinOid == y.TextbausteinOid;
}
}
return false;
}
public override int GetHashCode()
{
return GetType().Name.GetHashCode() ^ TextbausteinOid.GetHashCode();
}
public override string ToString()
{
return Name;
}
public ActivationTypeId ActivationType { get; set; }
public string DetailDescription => Text;
public string FilterRelevants => Name + Text;
public string IconPath { get; private set; }
public string SimpleDescription => Name;
public bool SupportsActivationType { get; private set; }
public long Version
{
get => TextbausteinVersion ?? 0;
set => TextbausteinVersion = value;
}
public SolidColorBrush FilterableBrush => new SolidColorBrush(Colors.Transparent);
}
}