Pivot-Tabelle: Checkbox hinzugefügt, mit der man Layout für alle Mitarbeiter verfügbar macht Allgemeine Rechnung und Eigenanteilsrechnung: Anrede auf Sehr geehrte Damen und Herren geändert
83 lines
1.8 KiB
C#
83 lines
1.8 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 FlexibleReportLayout : BeWoEntityBase
|
|
{
|
|
private long _CreatorOid;
|
|
private bool _VisibleForAllEmployee;
|
|
private string _LayoutName;
|
|
private string _LayoutString;
|
|
|
|
public FlexibleReportLayout()
|
|
{
|
|
_Tid = TableID.FlexibleReportLayout;
|
|
}
|
|
|
|
public virtual long CreatorOid
|
|
{
|
|
get
|
|
{
|
|
return _CreatorOid;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_CreatorOid, value))
|
|
{
|
|
_CreatorOid = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual bool VisibleForAllEmployee
|
|
{
|
|
get
|
|
{
|
|
return _VisibleForAllEmployee;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_VisibleForAllEmployee, value))
|
|
{
|
|
_VisibleForAllEmployee = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string LayoutName
|
|
{
|
|
get
|
|
{
|
|
return _LayoutName;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_LayoutName, value))
|
|
{
|
|
_LayoutName = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string LayoutString
|
|
{
|
|
get
|
|
{
|
|
return _LayoutString;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_LayoutString, value))
|
|
{
|
|
_LayoutString = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|