public IEnumerable <InventoryDTO> LoadByType(long characterId, Domain.InventoryType type)
 {
     return(Container.Where(i => i.CharacterId == characterId && i.Type == type));
 }
Exemple #2
0
 public IEnumerable <InventoryDTO> LoadByType(long characterId, Domain.InventoryType type)
 {
     throw new NotImplementedException();
 }
 public InventoryDTO LoadBySlotAndType(long characterId, short slot, Domain.InventoryType type)
 {
     return(Container.SingleOrDefault(i => i.CharacterId == characterId && i.Slot == slot && i.Type == type));
 }
Exemple #4
0
 public InventoryDTO LoadBySlotAndType(long characterId, short slot, Domain.InventoryType type)
 {
     throw new NotImplementedException();
 }