コード例 #1
0
ファイル: MatchesController.cs プロジェクト: srog/FMS
 public IEnumerable <Match> Get(int id)
 {
     if (id == 0)
     {
         return(_matchesService.GetForCurrentWeek());
     }
     return(_matchesService.GetByDivisionForCurrentWeek(id));
 }