Examples of LotteryTicketPurchasedEvent


Examples of com.xebia.lottery.events.LotteryTicketPurchasedEvent

            notify(new ValidationError("insufficient account balance to purchase ticket"));
            return;
        }
       
        customer.deductBalance(this.ticketPrice);
        apply(new LotteryTicketPurchasedEvent(aggregate.getVersionedId(), customer.getVersionedId(), generateTicketNumber()));
    }
View Full Code Here

Examples of com.xebia.lottery.events.LotteryTicketPurchasedEvent

   
    @Test
    public void shouldRaiseTicketPurchasedEvent() {
        assertChange(
                lottery,
                new LotteryTicketPurchasedEvent(LOTTERY_ID, CUSTOMER_ID, "431130"));
    }
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.