public void Notify(Statistics stats) { UpdateLabels(stats); }
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; }
private void UpdateLabels(Statistics stats) { throw new NotImplementedException(); }