databaseshoppingcartcontroller.vb

来自「C#语言制作asp.net网上商店的」· VB 代码 · 共 26 行

VB
26
字号
Imports Microsoft.VisualBasic
Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Collections


Namespace NetShopForge.Library.Cart

    Public Class DatabaseShoppingCartController
        Implements IShoppingCart

        Public Function Add(ByVal cartid As String, ByVal item As IShoppingCartInfo) As Integer Implements IShoppingCart.Add

        End Function

        Public Function GetItems(ByVal cartid As String) As System.Collections.Generic.IList(Of IShoppingCartInfo) Implements IShoppingCart.GetItems
            Return Nothing
        End Function

        Public Function Remove(ByVal cartid As String, ByVal item As IShoppingCartInfo) As Integer Implements IShoppingCart.Remove

        End Function

    End Class
End Namespace 'ShoppingCartGeneric

⌨️ 快捷键说明

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