Subversion Repositories SmartDukaan

Rev

Rev 21689 | Rev 22858 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.request;

import java.util.Set;

import com.spice.profitmandi.common.model.CustomCustomer;
import com.spice.profitmandi.common.model.CustomFofoLineItem;

public class CreateOrderRequest {
        private CustomCustomer customer;
        private String customerDateOfBirth;
        private Set<CustomFofoLineItem> fofoLineItems;
        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<CustomFofoLineItem> getFofoLineItems() {
                return fofoLineItems;
        }
        public void setFofoLineItems(Set<CustomFofoLineItem> fofoLineItems) {
                this.fofoLineItems = fofoLineItems;
        }
        public Set<CustomPaymentOption> getPaymentOptions() {
                return paymentOptions;
        }
        public void setPaymentOptions(Set<CustomPaymentOption> paymentOptions) {
                this.paymentOptions = paymentOptions;
        }
        @Override
        public String toString() {
                return "CustomOrderRequest [customer=" + customer + ", fofoLineItems="
                                + fofoLineItems + ", paymentOptions=" + paymentOptions + "]";
        }
        
}