feat(Entity): Erstellt als abstrakte Klasse, um allgemeine Entitätseigenschaften zu behandeln. Implementiert für Output und OutputReferences Entitäten
This commit is contained in:
parent
60dc0ad557
commit
bb97ed5ccd
5
src/DigitalData.DEX.Domain/Entities/Entity.cs
Normal file
5
src/DigitalData.DEX.Domain/Entities/Entity.cs
Normal file
@ -0,0 +1,5 @@
|
||||
namespace DigitalData.DEX.Domain.Entities;
|
||||
|
||||
public abstract class Entity
|
||||
{
|
||||
}
|
||||
@ -3,6 +3,6 @@
|
||||
namespace DigitalData.DEX.Domain.Entities;
|
||||
|
||||
[Table("TBDEX_OUTPUT", Schema = "dbo")]
|
||||
public class Output
|
||||
public class Output : Entity
|
||||
{
|
||||
}
|
||||
|
||||
@ -3,6 +3,6 @@
|
||||
namespace DigitalData.DEX.Domain.Entities;
|
||||
|
||||
[Table("TBDEX_OUTPUT_REFERENCES", Schema = "dbo")]
|
||||
public class OutputReferences
|
||||
public class OutputReferences : Entity
|
||||
{
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user