Files
BeWoPlaner/Data/Entities/EmploymentType.cs
2016-06-27 01:45:38 +02:00

40 lines
728 B
C#

using System.Collections.Generic;
using BS.Shared;
namespace BeWo.Data.Entities
{
public class EmploymentType : BeWoEntityBase
{
public static string PropertyName_Name = "Name";
private string _Name;
public EmploymentType()
{
this._Tid = TableID.EmploymentType;
}
public virtual string Name
{
get
{
return this._Name;
}
set
{
if (this.AreDifferent(this._Name, value))
{
this._Name = value;
}
}
}
}
}