91 lines
2.2 KiB
C#
91 lines
2.2 KiB
C#
using BS.Shared;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class Dokumentvorlage : BeWoEntityBase
|
|
{
|
|
private string _Name;
|
|
private string _Beschreibung;
|
|
private byte[] _Data;
|
|
private byte[] _Text;
|
|
private byte[] _RTFText;
|
|
private long? _Parent;
|
|
private long _Tabellenzugehoerigkeit;
|
|
|
|
public Dokumentvorlage()
|
|
{
|
|
_Tid = TableID.Dokumentvorlage;
|
|
}
|
|
|
|
public virtual string Name
|
|
{
|
|
get { return _Name; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Name, value))
|
|
_Name = value;
|
|
}
|
|
}
|
|
public virtual string Beschreibung
|
|
{
|
|
get { return _Beschreibung; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Beschreibung, value))
|
|
_Beschreibung = value;
|
|
}
|
|
}
|
|
public virtual byte[] Data
|
|
{
|
|
get { return _Data; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Data, value))
|
|
_Data = value;
|
|
}
|
|
}
|
|
public virtual byte[] Text
|
|
{
|
|
get { return _Text; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Text, value))
|
|
_Text = value;
|
|
}
|
|
}
|
|
public virtual byte[] RTFText
|
|
{
|
|
get { return _RTFText; }
|
|
set
|
|
{
|
|
if (AreDifferent(_RTFText, value))
|
|
_RTFText = value;
|
|
}
|
|
}
|
|
public virtual long? Parent
|
|
{
|
|
get { return _Parent; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Parent, value))
|
|
_Parent = value;
|
|
}
|
|
}
|
|
public virtual long Tabellenzugehoerigkeit
|
|
{
|
|
get { return _Tabellenzugehoerigkeit; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Tabellenzugehoerigkeit, value))
|
|
_Tabellenzugehoerigkeit = value;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|