Package kirjastox.model

Examples of kirjastox.model.CustomersDataAccessObject.save()


        int index = customersPersistentData.getCustomerIndexByCardNumber(cardNumber);
        this.customers.get(index).loanBook(loanBook);
       
        ArrayList<Customer> updatedCustomers = new ArrayList<Customer>(customers);
        customersPersistentData.updateAll(updatedCustomers);
        customersPersistentData.save();
    }
   
    public void setBookReturned(Book returningBook){
        int bookIndex = this.getBooks().indexOf(returningBook);
        Book bookTitle = this.getBooks().get(bookIndex);
View Full Code Here


       
        this.customers.get(index).buyAudioRecord(recordBought);
       
        ArrayList<Customer> updatedCustomers = new ArrayList<Customer>(customers);
        customersPersistentData.updateAll(updatedCustomers);
        customersPersistentData.save();
    }
   
    /* Apumetodit tietovaraston tilan oäivittämiseen, nämä on vain siirretty muista ohjaimista tänne*/
    public void updateBooksPersistentStore(){
        // Tässä päivitetään ja tallennetaan muutokset tiedostoon
View Full Code Here

    public void updateCustomersPersistentStore(){
        // Tässä päivitetään ja tallennetaan muutokset tiedostoon
        CustomersDataAccessObject customersPersistentData = new CustomersDataAccessObject();
        ArrayList<Customer> updatedCustomers = new ArrayList<Customer>(customers);
        customersPersistentData.updateAll(updatedCustomers);
        customersPersistentData.save();
    }
   
    /**
    * @return the test
    */
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.