23 lines
429 B
C#
23 lines
429 B
C#
|
|
namespace BeWo.Data.Entities
|
|||
|
|
{
|
|||
|
|
public class AdditionalService : BeWoEntityBase
|
|||
|
|
{
|
|||
|
|
public static string PropertyName_Name = "Name";
|
|||
|
|
|
|||
|
|
|
|||
|
|
private string _Name;
|
|||
|
|
|
|||
|
|
|
|||
|
|
public virtual string Name
|
|||
|
|
{
|
|||
|
|
get { return _Name; }
|
|||
|
|
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
if(AreDifferent(_Name, value))
|
|||
|
|
_Name = value;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|