コード例 #1
0
ファイル: RoundPontuations.cs プロジェクト: BrunoRM/WeStop
 public int this[string theme]
 {
     get
     {
         return(ThemesPontuations.FirstOrDefault(tp => tp.Theme.Equals(theme))?.Pontuation ?? 0);
     }
 }
コード例 #2
0
ファイル: RoundPontuations.cs プロジェクト: BrunoRM/WeStop
 public void AddPontuationForTheme(string theme, int points)
 {
     ThemesPontuations.Add(new ThemePontuation(theme, points));
 }