// GET: api/Spell/5 public Spell Get(int id) { return(SpellRepository.GetSpell().FirstOrDefault(p => p.Id == id)); }
// GET: api/Spell public IEnumerable <Spell> Get() { return(SpellRepository.GetSpell()); }