Updated `EnvelopeStatus` type in place of `EnvelopeStatusQuery` across multiple files, enhancing the domain model. Added `using` directives for `EnvelopeGenerator.Domain.Constants` in several files, improving clarity and maintainability. Modified import statements in Visual Basic files and repository classes to standardize imports. Overall, these changes aim to refine the structure and clarity of the codebase.
23 lines
660 B
VB.net
23 lines
660 B
VB.net
Imports EnvelopeGenerator.Domain.Constants
|
|
Imports EnvelopeGenerator.Domain.Entities
|
|
|
|
Public Class ReportItem
|
|
|
|
Public Property Envelope As Envelope
|
|
Public Property EnvelopeId As Integer
|
|
Public Property EnvelopeTitle As String
|
|
Public Property EnvelopeSubject As String
|
|
|
|
Public Property ItemStatus As EnvelopeStatus
|
|
Public ReadOnly Property ItemStatusTranslated As String
|
|
Get
|
|
Dim oStatus = ItemStatus.ToString()
|
|
Return My.Resources.Model.ResourceManager.GetString(oStatus)
|
|
End Get
|
|
End Property
|
|
|
|
Public Property ItemUserReference As String
|
|
Public Property ItemDate As Date
|
|
|
|
End Class
|