public override UITableViewCell GetCell(UITableView tableView, Foundation.NSIndexPath indexPath)
        {
            var cell = tableView.DequeueReusableCell("LeagueStatCell", indexPath);

            var actualStat = PlayerStatistics.ElementAt(indexPath.Row);

            (cell.ViewWithTag(200) as UILabel).Text = (indexPath.Row + 1).ToString();
            (cell.ViewWithTag(201) as UILabel).Text = Players.First(p => p.Id == actualStat.PlayerId).Name;
            (cell.ViewWithTag(202) as UILabel).Text = Teams.First(t => t.Id == actualStat.TeamId).Name;
            (cell.ViewWithTag(203) as UILabel).Text = actualStat.Goals.ToString();
            (cell.ViewWithTag(204) as UILabel).Text = actualStat.Assists.ToString();
            (cell.ViewWithTag(205) as UILabel).Text = actualStat.Points.ToString();
            (cell.ViewWithTag(206) as UILabel).Text = actualStat.Penalties;

            return(cell);
        }