refactor(Document): update Document entity structure and file properties

- Moved file-related properties (Filename, Filepath, FileNameOriginal) into dedicated region
- Added column mappings for file-related properties
- Changed Elements type to IEnumerable<Signature> for better abstraction
- Adjusted EnvelopeId default initialization for NETFRAMEWORK only
- Updated ByteData and nullable types for NET compatibility
- Removed obsolete default value and simplified property definitions
This commit is contained in:
tekh 2025-10-14 10:53:19 +02:00
parent f13a2434f7
commit 69821e64c6

View File

@ -31,17 +31,39 @@ public class Document : IHasEnvelope
[Required] [Required]
[Column("ENVELOPE_ID")] [Column("ENVELOPE_ID")]
public int EnvelopeId { get; set; } = 0; public int EnvelopeId { get; set; }
#if NETFRAMEWORK
= 0;
#endif
[Column("BYTE_DATA", TypeName = "varbinary(max)")] [Column("BYTE_DATA", TypeName = "varbinary(max)")]
public byte[] ByteData { get; set; } public byte[]
#if NET
?
#endif
ByteData { get; set; }
public List<Signature> Elements { get; set; } #region File
[Column("FILENAME", TypeName = "nvarchar(256)")]
public string Filename { get; set; }
// TODO: * Check the Form App and remove the default value [Column("FILEPATH", TypeName = "nvarchar(256)")]
[NotMapped]
public string Filepath { get; set; } public string Filepath { get; set; }
[Column("FILENAME_ORIGINAL", TypeName = "nvarchar(256)")]
public string
#if NET
?
#endif
FileNameOriginal { get; set; }
#endregion
public virtual List<Signature>
#if NET
?
#endif
Elements { get; set; }
[ForeignKey("EnvelopeId")] [ForeignKey("EnvelopeId")]
public virtual Envelope public virtual Envelope
#if NET #if NET
@ -50,15 +72,9 @@ public class Document : IHasEnvelope
Envelope { get; set; } Envelope { get; set; }
#if NETFRAMEWORK #if NETFRAMEWORK
[NotMapped]
public string FileNameOriginal { get; set; }
[NotMapped] [NotMapped]
public bool IsTempFile { get; set; } public bool IsTempFile { get; set; }
[NotMapped]
public string Filename { get; set; }
[NotMapped] [NotMapped]
public Bitmap Thumbnail { get; set; } public Bitmap Thumbnail { get; set; }