namespace ACG6MvcAdHcApi.BusinessLayer
{
     /// <summary>
     /// This file will not be overwritten.
     /// You can put additional IProductBusinessLayer code in this interface.
     /// Implement code you add here in the ProductBusinessLayer class found directly under the BusinessLayer folder.
     /// </summary>
     public partial interface IProductBusinessLayer
     {
         /// <summary>
         /// This is just an example on how to add your own method.  You can delete this.
         /// Implement this method in the ProductBusinessLayer class under the BusinessLayer folder.
         /// </summary>
         internal string JustAnExampleBusinessLayerMethod();
     }
}