Subversion Repositories SmartDukaan

Rev

Rev 3215 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3215 Rev 5072
Line 113... Line 113...
113
            return new CouponApplied(eType, sessionId, userId, email, logData);
113
            return new CouponApplied(eType, sessionId, userId, email, logData);
114
        case COUPON_REMOVED:
114
        case COUPON_REMOVED:
115
            return new CouponRemoved(eType, sessionId, userId, email, logData);
115
            return new CouponRemoved(eType, sessionId, userId, email, logData);
116
        case PROCEED_TO_PAY:
116
        case PROCEED_TO_PAY:
117
            return new ProceedToPay(eType, sessionId, userId, email, logData);
117
            return new ProceedToPay(eType, sessionId, userId, email, logData);
-
 
118
        case DELIVERY_ESTIMATE:
-
 
119
        	return new DeliveryEstimate(eType, sessionId, userId, email, logData);
118
        default:
120
        default:
119
            return new Event(eType, sessionId, userId, email);
121
            return new Event(eType, sessionId, userId, email);
120
        }
122
        }
121
    }
123
    }
122
    
124
    
Line 169... Line 171...
169
            return new CouponApplied(eventFileds);
171
            return new CouponApplied(eventFileds);
170
        case COUPON_REMOVED:
172
        case COUPON_REMOVED:
171
            return new CouponRemoved(eventFileds);
173
            return new CouponRemoved(eventFileds);
172
        case PROCEED_TO_PAY:
174
        case PROCEED_TO_PAY:
173
            return new ProceedToPay(eventFileds);
175
            return new ProceedToPay(eventFileds);
-
 
176
        case DELIVERY_ESTIMATE:
-
 
177
        	return new DeliveryEstimate(eventFileds);
174
        default:
178
        default:
175
            return new Event(eventFileds);
179
            return new Event(eventFileds);
176
        }
180
        }
177
    }
181
    }
178
    
182