feat(EnvelopeReceiverReadOnly): Erstellte Repository-Klasse mit der Interface-Implementierung

This commit is contained in:
Developer 02
2024-09-30 13:54:39 +02:00
parent b2195ce13f
commit b6badb44af
4 changed files with 27 additions and 1 deletions

View File

@@ -1,10 +1,11 @@
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using DigitalData.Core.Abstractions;
namespace EnvelopeGenerator.Domain.Entities
{
[Table("TBSIG_ENVELOPE_RECEIVER_READ_ONLY")]
public class EnvelopeReceiverReadOnly
public class EnvelopeReceiverReadOnly : IUnique<long>
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]