//Returns the Item with the given id, or null if no such Item exists public Item GetItem(int id) { if (_itemsAccessor.Exists(id)) { return(_itemsAccessor.Find(id)); } return(null); }