' <fileinfo name="CustomerCustomerDemoRow_Base.vb">
'       <copyright>
'           All rights reserved.
'       </copyright>
'       <remarks>
'           Do not change this source code manually. Changes to this file may 
'           cause incorrect behavior and will be lost if the code is regenerated.
'       </remarks>
'       <generator rewritefile="True" infourl="http://www.SharpPower.com">RapTier</generator>
' </fileinfo>

Option Strict Off
Option Explicit On

Imports System

''' <summary>
''' The base class for <see cref="CustomerCustomerDemoRow"/> that 
''' represents a record in the <c>CustomerCustomerDemo</c> table.
''' </summary>
''' <remarks>
''' Do not change this source code manually. Update the <see cref="CustomerCustomerDemoRow"/>
''' class if you need to add or change some functionality.
''' </remarks>
Public MustInherit Class CustomerCustomerDemoRow_Base
    Private _customerID As String
    Private _customerTypeID As String

    ''' <summary>
    ''' Initializes a new instance of the <see cref="CustomerCustomerDemoRow_Base"/> class.
    ''' </summary>
    Public Sub New()
        MyBase.New()
        ' EMPTY
    End Sub

        ''' <summary>
        ''' Gets or sets the <c>CustomerID</c> column value.
        ''' </summary>
        ''' <value>The <c>CustomerID</c> column value.</value>
    Public Property CustomerID As String
        Get
            Return _customerID
        End Get
        Set
            _customerID = value
        End Set
    End Property

        ''' <summary>
        ''' Gets or sets the <c>CustomerTypeID</c> column value.
        ''' </summary>
        ''' <value>The <c>CustomerTypeID</c> column value.</value>
    Public Property CustomerTypeID As String
        Get
            Return _customerTypeID
        End Get
        Set
            _customerTypeID = value
        End Set
    End Property

    ''' <summary>
    ''' Returns the string representation of this instance.
    ''' </summary>
    ''' <returns>The string representation of this instance.</returns>
    Public Overrides Function ToString() As String
        Dim dynStr As System.Text.StringBuilder = New System.Text.StringBuilder(Me.GetType().Name)
        dynStr.Append(":")
        dynStr.Append("  CustomerID=")
        dynStr.Append(Me.CustomerID)
        dynStr.Append("  CustomerTypeID=")
        dynStr.Append(Me.CustomerTypeID)
        Return dynStr.ToString()
    End Function
End Class