Diverse Änderungen am ChatServer

This commit is contained in:
staccatomamba
2016-09-13 11:32:25 +02:00
parent e3dd894a21
commit 988ac1ff4c
52 changed files with 1977 additions and 1402 deletions

View File

@@ -16,7 +16,7 @@ namespace BeWo.Data.Entities
public static string PropertyName_TeamOid = "TeamOid";
public static string PropertyName_IstZugestellt = "IstZugestellt";
public static string PropertyName_IsDelivered = "IsDelivered";
public static string PropertyName_IstGelesen = "IstGelesen";
@@ -28,7 +28,7 @@ namespace BeWo.Data.Entities
private long? _SenderPersonOid;
private int _istZugestellt;
private bool _IsDelivered;
private int _IstGelesen;
@@ -103,17 +103,17 @@ namespace BeWo.Data.Entities
}
}
public virtual int istZugestellt
public virtual bool IsDelivered
{
get
{
return _istZugestellt;
return _IsDelivered;
}
set
{
if (AreDifferent(_istZugestellt, value))
if (AreDifferent(_IsDelivered, value))
{
_istZugestellt = value;
_IsDelivered = value;
}
}
}