public static void AddApplication(ApplicationResponse application) { if (application.Title != "Independence Day") { applications.Add(application); } //This allows the class to exclude the movie Independence day to be added }
public static void AdddMovie(ApplicationResponse newMovie) { movies.Add(newMovie); }
public static void AddApplication(ApplicationResponse application) { applications.Add(application); }
public static void AddApplication(ApplicationResponse application) { //adds the application to the Sqlite database so it can be accessed when website is closed applications.Add(application); }