<% '@desc This file contains methods for retrieving functions from the ' Customer database. All functions use stored procedures to retrieve ' information from the database. This code should work with all databases. %> <% '@desc This function return the primary key in the database based on ' the first name and last name. '@example cCustomerID = GetCustomerID(cFirstName, cLastName) '@param cFirstName This is the first name of the customer '@param cLastName This is the last name of the customer '@return cCustomerID This is the primary key of the Customer '@see Also see the function in GetPartnerID in GetPartner.asp for ' similar fuunctionality for Partners '@since 1.1 Public Function GetCustomerID(cFirstName, cLastName) 'Some Processing Here End Function %>