I\'ve this object:
public class RankingAll { public Tuple, List> Ranking { get; set; } }
I\'
Your tuple requires two items (A List and a List) to be passed into the constructor. You can't construct a tuple without the members of the tuple being provided.