Exemplo n.º 1
0
 public int Compare(Book x, Book y)
 {
     return(NumbersCompare.CompareNumbers(x.Year, y.Year));
 }
Exemplo n.º 2
0
 public int Compare(Book x, Book y)
 {
     return(NumbersCompare.CompareNumbers(x.Price, y.Price));
 }
Exemplo n.º 3
0
 public int Compare(Book x, Book y)
 {
     return(NumbersCompare.CompareNumbers(x.NumberOfPages, y.NumberOfPages));
 }