namespace ACG6MvcAdHcApi.DataRepository { /// <summary> /// This file will not be overwritten. ///You can put additional IProductRepository members in this interface. /// </summary> public partial interface IProductRepository { /// <summary> /// This is just an example on how to add your own method. You can delete this. /// Implement this in the ProductRepository class under the DataRepository folder. /// </summary> internal string ExampleRepositoryMember(); } }