Subversion Repositories SmartDukaan

Rev

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

Rev 1854 Rev 2059
Line 77... Line 77...
77
	* get payment for user. If status and gateway are null, it is ignored. Same for times as well.
77
	* get payment for user. If status and gateway are null, it is ignored. Same for times as well.
78
	**/ 
78
	**/ 
79
	list<Payment> getPaymentsForUser(1:i64 userId, 2:i64 fromTime, 3:i64 toTime, 4:PaymentStatus status, 5:i64 gatewayId) throws (1:PaymentException pe),
79
	list<Payment> getPaymentsForUser(1:i64 userId, 2:i64 fromTime, 3:i64 toTime, 4:PaymentStatus status, 5:i64 gatewayId) throws (1:PaymentException pe),
80
	
80
	
81
	/**
81
	/**
82
	* get all payments for user. Gateway is mandatory.
82
	* get all payments for user. If gatewayId is 0, then it is ignored while filtering.
83
	**/ 
83
	**/ 
84
	list<Payment> getPayments(1:i64 fromTime, 2:i64 toTime, 3:PaymentStatus status, 4:i64 gatewayId) throws (1:PaymentException pe),
84
	list<Payment> getPayments(1:i64 fromTime, 2:i64 toTime, 3:PaymentStatus status, 4:i64 gatewayId) throws (1:PaymentException pe),
85
	
85
	
86
	
86
	
87
	/** 
87
	/**