using System; 
using Northwind45.BusinessObject.Base; 
 
namespace Northwind45.BusinessObject 
{ 
     /// <summary>
     /// This file will not be overwritten.  You can put 
     /// additional Products Business Layer code in this class. 
     /// </summary>
     public class Products : ProductsBase 
     { 
         // constructor 
         public Products() 
         { 
         } 
     } 
}