private void Error(IStat stat)
 {
     Errors++;
     stat.Dump();
     RosterLib.Utility.Announce(string.Format("          Error : {0} - {1} - {2}",
                                              NflWeek.WeekKey(":"), stat.Error, stat.PlayerId));
 }
 private void Error(IScore score)
 {
     Errors++;
     score.Dump();
     RosterLib.Utility.Announce(string.Format("          Error : {0} - {1} - {2}",
                                              NflWeek.WeekKey(":"), score.Error, score.PlayerId1));
 }
 private void Warn(string msg, IStat stat)
 {
     Warnings++;
     stat.Dump();
     RosterLib.Utility.Announce(string.Format("          Warning : {0} - {1} - {2}",
                                              NflWeek.WeekKey(":"), msg, stat.PlayerId));
 }
Esempio n. 4
0
 private void GameError(string msg)
 {
     Errors++;
     Utility.Announce($"          Error : {NflWeek.WeekKey(":")} - {msg}");
 }
Esempio n. 5
0
 private void Error(IScore score)
 {
     Errors++;
     score.Dump();
     Utility.Announce($"          Error : {NflWeek.WeekKey(":")} - {score.Error} - {score.PlayerId1}");
 }
Esempio n. 6
0
 private void Error(IStat stat)
 {
     Errors++;
     stat.Dump();
     Utility.Announce($"          Error : {NflWeek.WeekKey(":")} - {stat.Error} - {stat.PlayerId}");
 }
Esempio n. 7
0
 private void Warn(string msg, IStat stat)
 {
     Warnings++;
     stat.Dump();
     Utility.Announce($"          Warning : {NflWeek.WeekKey(":")} - {msg} - {stat.PlayerId}");
 }