예제 #1
0
        public List <Product> GetProductList(int ID)
        {
            var ProductList = _productDal.EagerLoadingWithParams(t => t.User_ID == ID, x => x.Brand, x => x.Category);

            return(ProductList);
        }