51 lines
675 B
C#
51 lines
675 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class Budget : BeWoEntityBase
|
|
{
|
|
private string _Name;
|
|
private decimal? _Betragshoehe;
|
|
|
|
public Budget()
|
|
{
|
|
_Tid = TableID.Budget;
|
|
}
|
|
|
|
public virtual string Name
|
|
{
|
|
get
|
|
{
|
|
return _Name;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Name, value))
|
|
{
|
|
_Name = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual decimal? Betragshoehe
|
|
{
|
|
get
|
|
{
|
|
return _Betragshoehe;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Betragshoehe, value))
|
|
{
|
|
_Betragshoehe = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|