/*
* 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 class ItemDaoImpl implements ItemDao {
@Override
public Item getItemById(int itemId) {
assert itemId != 0;
String itemName = ItemInfo.getItemNamebyId(itemId);
String username = ItemInfo.getUsernameById(itemId);
return new Item(itemId,itemName,username);
}
}
No comments:
Post a Comment