// <fileinfo name="QuarterlyOrdersCollection.cs">
//      <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>

using System;

namespace MyCompany.MyProject.Db
{
    /// <summary>
    /// Represents the <c>QuarterlyOrders</c> view.
    /// </summary>
    public class QuarterlyOrdersCollection : QuarterlyOrdersCollection_Base
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="QuarterlyOrdersCollection"/> class.
        /// </summary>
        /// <param name="db">The database object.</param>
        internal QuarterlyOrdersCollection(Northwind db)
                : base(db)
        {
            // EMPTY
        }
    } // End of QuarterlyOrdersCollection class
} // End of namespace