コード例 #1
0
 // GET: api/Spell/5
 public Spell Get(int id)
 {
     return(SpellRepository.GetSpell().FirstOrDefault(p => p.Id == id));
 }
コード例 #2
0
 // GET: api/Spell
 public IEnumerable <Spell> Get()
 {
     return(SpellRepository.GetSpell());
 }