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