refactor(Bereich): IEnumerable und ICollections auf List aktualisiert, um Fehler in VB-Projekten zur Compilerzeit zu erhalten

This commit is contained in:
Developer 02 2025-05-26 09:54:45 +02:00
parent 3625508460
commit dafa4f0409
2 changed files with 4 additions and 4 deletions

View File

@ -134,13 +134,13 @@ namespace EnvelopeGenerator.Domain.Entities
public byte[] DOC_RESULT { get; set; } public byte[] DOC_RESULT { get; set; }
// TODO: * Check the Form App and remove the default value // TODO: * Check the Form App and remove the default value
public IEnumerable<EnvelopeDocument> Documents { get; set; } = new List<EnvelopeDocument>(); public List<EnvelopeDocument> Documents { get; set; } = new List<EnvelopeDocument>();
// TODO: * Check the Form App and remove the default value // TODO: * Check the Form App and remove the default value
public IEnumerable<EnvelopeHistory> History { get; set; } = new List<EnvelopeHistory>(); public List<EnvelopeHistory> History { get; set; } = new List<EnvelopeHistory>();
// TODO: * Check the Form App and remove the default value // TODO: * Check the Form App and remove the default value
public ICollection<Receiver> Receivers { get; set; } = new List<Receiver>(); public List<Receiver> Receivers { get; set; } = new List<Receiver>();
/// <summary> /// <summary>
/// Validates whether the receiver and document data are complete. /// Validates whether the receiver and document data are complete.

View File

@ -34,7 +34,7 @@ namespace EnvelopeGenerator.Domain.Entities
[Column("TFA_REG_DEADLINE", TypeName = "datetime")] [Column("TFA_REG_DEADLINE", TypeName = "datetime")]
public DateTime TfaRegDeadline { get; set; } public DateTime TfaRegDeadline { get; set; }
public IEnumerable<EnvelopeReceiver> EnvelopeReceivers { get; set; } public List<EnvelopeReceiver> EnvelopeReceivers { get; set; }
[NotMapped] [NotMapped]
public string Name { get; set; } public string Name { get; set; }