public ActionResult <List <SortJob> > GetJobs()
 {
     // TODO: Should return all jobs that have been enqueued (both pending and completed).
     return(Ok(MemoryQueue.GetAllQueue()));
 }