Submission and Bonus Missions
Sanity Check
Before submitting, make sure that your application:
- Prints each field of a job when using search functionality, and when listing all columns. If there are no search results, a descriptive message is displayed.
- Allows the user to search for a string across all columns.
- Returns case-insensitive results.
- Run the autograding tests to ensure that the tests pass.
How to Submit
To turn in your assignment and get credit, follow the submission instructions.
Review Assignment 0 if you need a refresher on this process.
Bonus Missions
If you want to take your learning a few steps further, here are some additional features the company team thinks would be nice to have in our app. We’re not providing you much guidance here, but we have confidence that you can figure how to implement these enhanced features!
- Sorting list results: When a user asks for a list of employers, locations, position types, etc., it would be nice if results were sorted alphabetically. Make this happen.
- Returning a copy of AllJobs: Look at
JobData.FindAll()
. Notice that it’s returning theAllJobs
property, which is a static property of theJobData
class. In general, this is not a great thing to do, since the person calling ourFindAll()
method could then mess with the data thatAllJobs
contains. Fix this by creating a copy ofAllJobs
. Hint: Look at the methods of theList
class listed in the Microsoft documentation.