Package classes

Examples of classes.CompanyProfile


        profile = new Profile("milan", "test", "milan", "milan",
                "milan@milan.com", "0745111111", "Devijka", "Prague", "6");
        dao.put(profile);

         //Company Profile
        CompanyProfile companyProfile = new CompanyProfile("KLM", "test", "KLM",
                "123456789", "No12403", "klm@klm.com", "0765342167", "Vanickova", "Prague", "6");
        dao.put(companyProfile);
        companyProfile = new CompanyProfile("Luthansa", "test", "Luthansa",
                "234232423", "No23403", "lht@lht.com", "0765342167", "Mustek", "Prague", "1");
        dao.put(companyProfile);
        companyProfile = new CompanyProfile("AirFrance", "test", "AirFrance",
                "23545645322", "No1223443", "afr@kafr.com", "072756443", "Center", "Prague", "1");
        dao.put(companyProfile);


        /*
 
View Full Code Here


        String department = request.getParameter("departmentCom");
        String passwordAgain = request.getParameter("passwordAgainCom");

       
        /* create new user */
        CompanyProfile profile = new CompanyProfile(username, password, firstName,
                regNumber, regAuth, email, phone, street, city, department);
        /* instance of database */
        DAO dao = DAO.getInstance();

        /* all fields must be filled */
 
View Full Code Here

TOP

Related Classes of classes.CompanyProfile

Copyright © 2018 www.massapicom. 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.