31 lines
570 B
C#
31 lines
570 B
C#
// Copyright (c) 2008-2018 schick Informatik
|
|
// Description: Basisklasse der Entitäten
|
|
//
|
|
|
|
using System;
|
|
|
|
namespace bsmd.AISService.DB
|
|
{
|
|
public abstract class AISBaseEntity
|
|
{
|
|
protected Guid? id;
|
|
|
|
private bool isNew = true;
|
|
|
|
public AISBaseEntity() { }
|
|
|
|
public Guid? Id
|
|
{
|
|
get { return this.id; }
|
|
set { this.id = value; }
|
|
}
|
|
|
|
public bool IsNew
|
|
{
|
|
get { return this.isNew; }
|
|
set { this.isNew = value; }
|
|
}
|
|
|
|
}
|
|
}
|