Beispiel #1
0
 public int CompareTo(Ranking other)
 {
     if (Ffl != other.Ffl)
     {
         return(Ffl.CompareTo(other.Ffl));
     }
     if (Line != other.Line)
     {
         return(Line.CompareTo(other.Line));
     }
     if (Position != other.Position)
     {
         return(Position.CompareTo(other.Position));
     }
     if (Tier != other.Tier)
     {
         return(Tier.CompareTo(other.Tier));
     }
     if (Rank != other.Rank)
     {
         return(Rank.CompareTo(other.Rank));
     }
     if (Ppg != other.Ppg)
     {
         return(-Ppg.CompareTo(other.Ppg));
     }
     return(Rank2.CompareTo(other.Rank2));
 }
Beispiel #2
0
 public int CompareTo(Comment other)
 {
     if (Ffl != other.Ffl)
     {
         return(Ffl.CompareTo(other.Ffl));
     }
     return(Round.CompareTo(other.Round));
 }
Beispiel #3
0
 public int CompareTo(Confidence other)
 {
     if (Ffl != other.Ffl)
     {
         return(Ffl.CompareTo(other.Ffl));
     }
     return(Position.CompareTo(other.Position));
 }
Beispiel #4
0
 public int CompareTo(Weight other)
 {
     if (Ffl != other.Ffl)
     {
         return(Ffl.CompareTo(other.Ffl));
     }
     if (Group != other.Group)
     {
         return(Group.CompareTo(other.Group));
     }
     return(Depth.CompareTo(other.Depth));
 }
Beispiel #5
0
 public int CompareTo(Limit other)
 {
     if (Ffl != other.Ffl)
     {
         return(Ffl.CompareTo(other.Ffl));
     }
     if (Position != other.Position)
     {
         return(Position.CompareTo(other.Position));
     }
     return(Round.CompareTo(other.Round));
 }
Beispiel #6
0
 public Ffl(Ffl ffl)
 {
     Name  = ffl.Name;
     Owner = ffl.Owner;
     Email = ffl.Email;
 }