public static void AddMovie(ApplicationResponse appRes)
 {
     //adds the group to the Sqlite database so it can be accessed when website is closed
     movie_list.Add(appRes);
 }
 public static void RemoveMovie(ApplicationResponse appRes)
 {
     movie_list.Remove(appRes);
 }
 public static void AddApplication(ApplicationResponse application)
 {
     applications.Add(application);
 }