Write a function `sort_with_tiebreaker(items, primary, tiebreaker)` in the `Comparators` class which takes in a list of items, a primary sorting method and a tiebreaker sorting method, which returns the list sorted with the primary comparator, with items that tie in value being sorted by the tiebreaker. 