diff --git a/EnvelopeGenerator.Domain/Entities/Envelope.cs b/EnvelopeGenerator.Domain/Entities/Envelope.cs index 9d92e6f8..0650a97b 100644 --- a/EnvelopeGenerator.Domain/Entities/Envelope.cs +++ b/EnvelopeGenerator.Domain/Entities/Envelope.cs @@ -134,13 +134,13 @@ namespace EnvelopeGenerator.Domain.Entities public byte[] DOC_RESULT { get; set; } // TODO: * Check the Form App and remove the default value - public IEnumerable Documents { get; set; } = new List(); + public List Documents { get; set; } = new List(); // TODO: * Check the Form App and remove the default value - public IEnumerable History { get; set; } = new List(); + public List History { get; set; } = new List(); // TODO: * Check the Form App and remove the default value - public ICollection Receivers { get; set; } = new List(); + public List Receivers { get; set; } = new List(); /// /// Validates whether the receiver and document data are complete. diff --git a/EnvelopeGenerator.Domain/Entities/Receiver.cs b/EnvelopeGenerator.Domain/Entities/Receiver.cs index 9c69c94a..91a6f437 100644 --- a/EnvelopeGenerator.Domain/Entities/Receiver.cs +++ b/EnvelopeGenerator.Domain/Entities/Receiver.cs @@ -34,7 +34,7 @@ namespace EnvelopeGenerator.Domain.Entities [Column("TFA_REG_DEADLINE", TypeName = "datetime")] public DateTime TfaRegDeadline { get; set; } - public IEnumerable EnvelopeReceivers { get; set; } + public List EnvelopeReceivers { get; set; } [NotMapped] public string Name { get; set; }