public static PlayerPointsLine GetPlayerPointsSeasonWeek(NPGGFFLDataContext context, int playerId, int seasonWeekId)
 {
     PlayersController controller = new PlayersController();
     var gameThisWeek = controller.GetPlayerGameThisWeek(playerId, seasonWeekId);
     if (gameThisWeek != null)
     {
         var playerPointsSeasonWeek = GetPlayerPoints(context, playerId, gameThisWeek.GameId);
         return playerPointsSeasonWeek;
     }
     else
     {
         return null;
     }
 }