' <fileinfo name="InvoicesCollection.vb">
'       <copyright>
'           All rights reserved.
'       </copyright>
'       <remarks>
'           You can update this source code manually. If the file
'           already exists it will not be rewritten by the generator.
'       </remarks>
'       <generator rewritefile="False" infourl="http://www.SharpPower.com">RapTier</generator>
' </fileinfo>

Option Strict Off
Option Explicit On

Imports System

''' <summary>
''' Represents the <c>Invoices</c> view.
''' </summary>
Public Class InvoicesCollection
        Inherits InvoicesCollection_Base
    ''' <summary>
    ''' Initializes a new instance of the <see cref="InvoicesCollection"/> class.
    ''' </summary>
    ''' <param name="db">The database object.</param>
    Friend Sub New(db As Northwind)
        MyBase.New(db)
        ' EMPTY
    End Sub
End Class