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