예제 #1
0
파일: ProductBL.cs 프로젝트: yoorke/pinshop
 public Product GetProduct(int productID, string url, bool count)
 {
     ProductDL productDL = new ProductDL();
     return productDL.GetProduct(productID, url, count);
 }
예제 #2
0
 public Product GetProduct(int productID, string url)
 {
     ProductDL productDL = new ProductDL();
     return productDL.GetProduct(productID, url);
 }