'############################################################################## ' Author: Kevin Koch ' Description: This class represents a static property object used to store ' information regarding a customer, both pre and post login '############################################################################## Public Class ClientSession Public Shared CLIENT_SESSION_REF As String = "CLIENT_SESSION" Public CustomerId As Int32 Public NumItems As Int32 Public BookIds As New ArrayList() Public FirstName As String Public LastName As String Public Email As String End Class |