Example #1
0
 public void Notify(Statistics stats)
 {
     UpdateLabels(stats);
 }
Example #2
0
 private bool Equals(Statistics other)
 {
     return Goals == other.Goals &&
         Shots == other.Shots &&
         Saves == other.Saves &&
         SaveAttempts == other.SaveAttempts &&
         YellowCard == other.YellowCard &&
         Suspension == other.Suspension &&
         RedCard == other.RedCard;
 }
Example #3
0
 private void UpdateLabels(Statistics stats)
 {
     throw new NotImplementedException();
 }