32 lines
841 B
VB.net
32 lines
841 B
VB.net
' This class is "generated" and will be overwritten.
|
|
' Your customizations should be made in SectionSqlTable.vb
|
|
|
|
Imports BaseClasses.Data
|
|
Imports BaseClasses
|
|
Imports BaseClasses.Data.SqlProvider
|
|
|
|
|
|
Namespace Persons.Data
|
|
|
|
''' <summary>
|
|
''' The generated superclass for the <see cref="SectionSqlTable"></see> class.
|
|
''' </summary>
|
|
''' <remarks>
|
|
''' This class is not intended to be instantiated directly. To obtain an instance of this class,
|
|
''' use the methods of the <see cref="SectionTable"></see> class.
|
|
''' </remarks>
|
|
''' <seealso cref="SectionTable"></seealso>
|
|
''' <seealso cref="SectionSqlTable"></seealso>
|
|
|
|
Public Class BaseSectionSqlTable
|
|
Inherits DynamicSQLServerAdapter
|
|
|
|
Public Sub New()
|
|
MyBase.New()
|
|
End Sub
|
|
|
|
Public Sub New(ByVal connectionName As String)
|
|
MyBase.New(connectionName)
|
|
End Sub
|
|
End Class
|
|
End Namespace
|