refactor(Envelope): rename Receivers property as EnvelopeReceivers

This commit is contained in:
2025-09-08 11:48:54 +02:00
parent 122df4bd62
commit 67f068ef38
18 changed files with 47 additions and 37 deletions

View File

@@ -1352,7 +1352,7 @@ namespace EnvelopeGenerator.Infrastructure.Migrations
modelBuilder.Entity("EnvelopeGenerator.Domain.Entities.Receiver", b =>
{
b.HasOne("EnvelopeGenerator.Domain.Entities.Envelope", null)
.WithMany("Receivers")
.WithMany("EnvelopeReceivers")
.HasForeignKey("EnvelopeId");
});
@@ -1362,7 +1362,7 @@ namespace EnvelopeGenerator.Infrastructure.Migrations
b.Navigation("History");
b.Navigation("Receivers");
b.Navigation("EnvelopeReceivers");
});
modelBuilder.Entity("EnvelopeGenerator.Domain.Entities.EnvelopeDocument", b =>

View File

@@ -1349,7 +1349,7 @@ namespace EnvelopeGenerator.Infrastructure.Migrations
modelBuilder.Entity("EnvelopeGenerator.Domain.Entities.Receiver", b =>
{
b.HasOne("EnvelopeGenerator.Domain.Entities.Envelope", null)
.WithMany("Receivers")
.WithMany("EnvelopeReceivers")
.HasForeignKey("EnvelopeId");
});
@@ -1359,7 +1359,7 @@ namespace EnvelopeGenerator.Infrastructure.Migrations
b.Navigation("History");
b.Navigation("Receivers");
b.Navigation("EnvelopeReceivers");
});
modelBuilder.Entity("EnvelopeGenerator.Domain.Entities.EnvelopeDocument", b =>