Package no.ugland.utransprod.service

Examples of no.ugland.utransprod.service.CustomerManager


  @After
  public void afterMethod() {
    dialogFixture.cleanUp();

    CustomerManager customerManager = (CustomerManager) ModelUtil
        .getBean("customerManager");
    Order order = orderManager.findByOrderNr("100100100");
    if (order != null) {
      orderManager.removeOrder(order);
    }

    Customer customer = customerManager.findByCustomerNr(100);
    if (customer != null) {
      customerManager.removeCustomer(customer);
    }

  }
View Full Code Here

TOP

Related Classes of no.ugland.utransprod.service.CustomerManager

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.