/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package mumbay.dao.item;
//~--- non-JDK imports --------------------------------------------------------
import mumbay.data.Item;
/**
*
* @author HP
*/
public interface ItemDao {
// public void addItem(Item item);
public Item getItemById(int itemId); // throws CustomerNotFoundException;
// public void deleteUser(int itemId);// throws CustomerNotFoundException;
// public void updateUser(Item item);// throws CustomerNotFoundException;
}
No comments:
Post a Comment