Exemplo n.º 1
0
 public Entities.Item GetItemByName(string name)
 {
     DataAccessLayer.ItemFactory itemFactory = new DataAccessLayer.ItemFactory();
      return itemFactory.GetItemByName(name);
 }
Exemplo n.º 2
0
 public Entities.Item GetItemById(int id)
 {
     DataAccessLayer.ItemFactory itemFactory = new DataAccessLayer.ItemFactory();
      return itemFactory.GetItemById(id);
 }