Last active
August 29, 2015 14:11
-
-
Save Alfred-Sun/5ee66c80c2220240cf61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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