Examples of CorporateClient


Examples of pl.altkom.bookstore.web.model.CorporateClient

    }
   
    @Test
    public void testClientSave() {
       
        CorporateClient client = new CorporateClient();
       
        Person p = new Person();
        p.setLastName("Kowalski");
        p.setFirstName("Jan");
               
        client.addPerson(p);
       
        client.setName("nazwa klienta");
       
        clientDAO.save(client);
       
    }
View Full Code Here

Examples of pl.altkom.bookstore.web.model.CorporateClient

    public void testLoadClient() {
       
        Client c = clientDAO.findOne(3);
       
        if( c instanceof CorporateClient) {
            CorporateClient corpo = (CorporateClient)c;
            System.out.println(corpo.getName());
           
            for(Person p : corpo.getPersons()) {
                System.out.println(p);
            }
           
           
        }
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.