namespace ACG6MvcAdHcApi.DataRepository { /// <summary> /// This file will not be overwritten. /// You can put additional ProductRepository code in this class. /// Here, you can implement additional code you placed in the IProductRepository interface found directly under the DataRepository folder. /// </summary> public partial class ProductRepository { /// <summary> /// This is just an example custom member. You can delete this. /// </summary> string IProductRepository.ExampleRepositoryMember() { return "Implementation for the ExampleRepositoryMember() located in the IProductRepository directly under the DataRepository folder"; } } }