Rev 22244 | Rev 23417 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.model;import java.util.Set;public class CreateOrderRequest {private CustomCustomer customer;private String customerDateOfBirth;private Set<CustomFofoOrderItem> fofoOrderItems;private Set<CustomPaymentOption> paymentOptions;public void setCustomer(CustomCustomer customer) {this.customer = customer;}public CustomCustomer getCustomer() {return customer;}public void setCustomerDateOfBirth(String customerDateOfBirth) {this.customerDateOfBirth = customerDateOfBirth;}public String getCustomerDateOfBirth() {return customerDateOfBirth;}public Set<CustomFofoOrderItem> getFofoOrderItems() {return fofoOrderItems;}public void setFofoOrderItems(Set<CustomFofoOrderItem> fofoLineItems) {this.fofoOrderItems = fofoLineItems;}public Set<CustomPaymentOption> getPaymentOptions() {return paymentOptions;}public void setPaymentOptions(Set<CustomPaymentOption> paymentOptions) {this.paymentOptions = paymentOptions;}@Overridepublic String toString() {return "CustomOrderRequest [customer=" + customer + ", fofoOrderItems="+ fofoOrderItems + ", paymentOptions=" + paymentOptions + "]";}}