⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ordertransactioninfo.vb

📁 C#语言制作asp.net网上商店的
💻 VB
字号:


Namespace NetShopForge.Library.Order


    Public Class OrderTransactionInfo

        Private _OrderNumber As String
        Private _TransactionDate As Date
        Private _PaymentTypeID As Integer
        Private _Amount As Decimal
        Private _TransactionNotes As String


        Public Property OrderNumber() As String
            Get
                Return _OrderNumber
            End Get
            Set(ByVal value As String)
                _OrderNumber = value
            End Set
        End Property

        Public Property TransactionDate() As Date
            Get
                Return _TransactionDate
            End Get
            Set(ByVal value As Date)
                _TransactionDate = value
            End Set
        End Property

        Public Property PaymentTypeID() As Integer
            Get
                Return _PaymentTypeID
            End Get
            Set(ByVal value As Integer)
                _PaymentTypeID = value
            End Set
        End Property
        Public Property Amount() As Decimal
            Get
                Return _Amount
            End Get
            Set(ByVal value As Decimal)
                _Amount = value
            End Set
        End Property
        Public Property TransactionNotes() As String
            Get
                Return _TransactionNotes
            End Get
            Set(ByVal value As String)
                _TransactionNotes = value
            End Set
        End Property

    End Class


End Namespace

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -