public static void printCustomersInCity() {
   List<Customer> cList = f.getCustomersInCity("NYC");
   System.out.println(System.lineSeparator() + "NYC customers: ");
   cList
       .stream()
       .forEach(
           (s) -> {
             System.out.println("- " + s.getCustomerName());
           });
 }