Skip to content

Instantly share code, notes, and snippets.

@subodh-malgonde
Created December 22, 2015 18:44
Show Gist options
  • Save subodh-malgonde/c77461d6d2d4ab8abefc to your computer and use it in GitHub Desktop.
Save subodh-malgonde/c77461d6d2d4ab8abefc to your computer and use it in GitHub Desktop.
public class AddToCartEvent{
private Product product;
public AddToCartEvent(Product product){
this.product = product;
}
public Product getProduct(){
return product;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment