コード例 #1
0
 public ActionResult <Map> Get(int index)
 {
     if (index == 0)
     {
         return(NoContent());
     }
     return(_MapService.Get(index));
 }
 public ActionResult <List <Player> > Get()
 {
     return(_PlayerService.Get());
 }
 public ActionResult <List <User> > Get()
 {
     return(_RegService.Get());
 }