33 lines
1.2 KiB
VB.net
33 lines
1.2 KiB
VB.net
' This is a "safe" class, meaning that it is created once
|
|
' and never overwritten. Any custom code you add to this class
|
|
' will be preserved when you regenerate your application.
|
|
'
|
|
' Typical customizations that may be done in this class include
|
|
' - overriding base class methods
|
|
|
|
Imports BaseClasses.Data
|
|
Imports BaseClasses.Data.SqlProvider
|
|
|
|
Namespace Persons.Data
|
|
|
|
''' <summary>
|
|
''' Used by the <see cref="ShowPersonalIdTableQuery"></see> class to access and/or modify the database.
|
|
''' </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="ShowPersonalIdTableQuery"></see> class.
|
|
''' <para>
|
|
''' This is a "safe" class, meaning that it is generated once and never overwritten.
|
|
''' Any changes you make to this class will be preserved when you regenerate your application.
|
|
''' </para>
|
|
''' </remarks>
|
|
''' <seealso cref="ShowPersonalIdTableQuery"></seealso>
|
|
|
|
Public Class ShowPersonalIdTableSqlQuery
|
|
Inherits BaseShowPersonalIdTableSqlQuery
|
|
|
|
'The functions below may be overridden in order to implement your own
|
|
'logic for running queries that return lists of records.
|
|
|
|
End Class
|
|
End Namespace
|