cudreg-saml2/App_Code/Business Layer/ShowPersonalEducationTableRecord.vb.old
2025-06-08 16:22:20 +07:00

34 lines
1.1 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
' - adding custom event handlers
' - overriding base class methods
Imports System.Data.SqlTypes
Imports BaseClasses
Imports BaseClasses.Data
Imports BaseClasses.Data.SqlProvider
Namespace Persons.Business
''' <summary>
''' Provides access to the data in a record associated with a custom query.
''' Also provides access to the <see cref="ShowPersonalEducationTableQuery"></see> that each record is associated with.
''' </summary>
''' <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>
''' <seealso cref="ShowPersonalEducationTableQuery"></seealso>
<Serializable()> Public Class ShowPersonalEducationTableRecord
Inherits BaseShowPersonalEducationTableRecord
Public Sub New()
MyBase.New()
End Sub
End Class
End Namespace