示例#1
0
 public new bool Delete(int productId)
 {
     if (productId <= 0)
     {
         return(false);
     }
     return(_productDao.DeleteItem(productId));
 }