Skip to content

Instantly share code, notes, and snippets.

@Alfred-Sun
Last active August 29, 2015 14:11
Show Gist options
  • Save Alfred-Sun/5ee66c80c2220240cf61 to your computer and use it in GitHub Desktop.
Save Alfred-Sun/5ee66c80c2220240cf61 to your computer and use it in GitHub Desktop.
Class CustomerInfo
Protected PreviousCustomer As CustomerInfo
Protected NextCustomer As CustomerInfo
Public ID As Integer
Public FullName As String
Public Sub InsertCustomer(ByVal FullName As String)
' Insert code to add a CustomerInfo item to the list.
End Sub
Public Sub DeleteCustomer()
' Insert code to remove a CustomerInfo item from the list.
End Sub
Public Function GetNextCustomer() As CustomerInfo
' Insert code to get the next CustomerInfo item from the list.
Return NextCustomer
End Function
Public Function GetPrevCustomer() As CustomerInfo
'Insert code to get the previous CustomerInfo item from the list.
Return PreviousCustomer
End Function
End Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment