initial commit
This commit is contained in:
commit
252dac3143
1516 changed files with 694271 additions and 0 deletions
38
App_Code/Business Layer/View_PersonalEducationRecord.vb
Normal file
38
App_Code/Business Layer/View_PersonalEducationRecord.vb
Normal file
|
@ -0,0 +1,38 @@
|
|||
' 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 database record from a table (or view) that lacks a primary key.
|
||||
''' Also provides access to the <see cref="View_PersonalEducationView"></see> that each record is associated with.
|
||||
''' </summary>
|
||||
''' <remarks>
|
||||
''' <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_PersonalEducationView"></seealso>
|
||||
|
||||
<Serializable()> Public Class View_PersonalEducationRecord
|
||||
Inherits BaseView_PersonalEducationRecord
|
||||
|
||||
' Constructors
|
||||
|
||||
Public Sub New()
|
||||
MyBase.New()
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
End Namespace
|
Loading…
Add table
Add a link
Reference in a new issue