var orderedStudents = students.OrderBy(x => x.FacultyNumber).ToList();
var orderedWorkers = workers.OrderByDescending(x => x.moneyPerHour).ToList();
Those are the two lists that I want to merge, but I can't figure out how since they have different types.