38 lines
676 B
C#
38 lines
676 B
C#
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class DepotRhythmus : BeWoEntityBase
|
|
{
|
|
public static string PropertyName_Bezeichnung = "Bezeichnung";
|
|
public static string PropertyName_Wert = "Wert";
|
|
|
|
private string _Bezeichnung;
|
|
private int? _Wert;
|
|
|
|
public virtual string Bezeichnung
|
|
{
|
|
get { return _Bezeichnung; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Bezeichnung, value))
|
|
_Bezeichnung = value;
|
|
}
|
|
}
|
|
|
|
public virtual int? Wert
|
|
{
|
|
get { return _Wert; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Wert, value))
|
|
_Wert = value;
|
|
}
|
|
}
|
|
|
|
public DepotRhythmus()
|
|
{
|
|
_Tid = TableID.DepotRhythmus;
|
|
}
|
|
}
|
|
} |