Package pl.com.bottega.ecommerce.sales.readmodel.orders

Examples of pl.com.bottega.ecommerce.sales.readmodel.orders.OrderQuery


  @Inject
  private OrderFinder orderFinder;
 
  @EventListener
  public void handle(CustomerStatusChangedEvent event){
    OrderQuery orderQuery = new OrderQuery(null, event.getCustomerId());
    PaginatedResult<OrderDto> orders = orderFinder.query(orderQuery);
   
    Money discount = calculateDiscout(event.getCustomerId());
   
    for(OrderDto dto : orders.getItems()){
View Full Code Here

TOP

Related Classes of pl.com.bottega.ecommerce.sales.readmodel.orders.OrderQuery

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.