initial commit

This commit is contained in:
Siwat Sirichai 2025-06-08 16:22:20 +07:00
commit 252dac3143
1516 changed files with 694271 additions and 0 deletions

View file

@ -0,0 +1,33 @@
' 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="View_PersonsView"></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="View_PersonsView"></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="View_PersonsView"></seealso>
Public Class View_PersonsSqlView
Inherits BaseView_PersonsSqlView
'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