Package com.alphacsp.dvdrus.model.interfaces

Examples of com.alphacsp.dvdrus.model.interfaces.CustomerDao


*/
public class Main {

   public static void main(String[] args){
       ApplicationContext ctx =new ClassPathXmlApplicationContext("com/alphacsp/dvdrus/hibernate/cfg/spring.xml");
       CustomerDao dao = (CustomerDao) ctx.getBean("customerDao");
       dao.getCustomer(44);
   }
View Full Code Here

TOP

Related Classes of com.alphacsp.dvdrus.model.interfaces.CustomerDao

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.