Files
BeWoPlaner/Data/Entities/EmploymentType.cs

56 lines
1.1 KiB
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
using System.Collections.Generic;
using BS.Shared;
namespace BeWo.Data.Entities
{
public class EmploymentType : BeWoEntityBase
{
public static string PropertyName_Name = "Name";
public static string PropertyName_LeaveDays = "LeaveDays";
2016-06-27 01:45:38 +02:00
private string _Name;
private decimal? _LeaveDays;
2016-06-27 01:45:38 +02:00
public EmploymentType()
{
this._Tid = TableID.EmploymentType;
}
public virtual string Name
{
get
{
return this._Name;
}
set
{
if (this.AreDifferent(this._Name, value))
{
this._Name = value;
}
}
}
public virtual decimal? LeaveDays
{
get
{
return this._LeaveDays;
}
set
{
if (this.AreDifferent(this._LeaveDays, value))
{
this._LeaveDays = value;
}
}
}
2016-06-27 01:45:38 +02:00
}
}