56 lines
1.1 KiB
C#
56 lines
1.1 KiB
C#
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";
|
|
|
|
|
|
private string _Name;
|
|
private decimal? _LeaveDays;
|
|
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
} |