27 lines
413 B
C#
27 lines
413 B
C#
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class Auszahlungsart : BeWoEntityBase
|
|
{
|
|
public static string PropertyName_Name = "Name";
|
|
|
|
private string _Name;
|
|
|
|
public Auszahlungsart()
|
|
{
|
|
_Tid = TableID.Auszahlungsart;
|
|
}
|
|
|
|
public virtual string Name
|
|
{
|
|
get { return _Name; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Name, value))
|
|
_Name = value;
|
|
}
|
|
}
|
|
}
|
|
}
|