Subversion Repositories SmartDukaan

Rev

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

Rev 1628 Rev 1731
Line 273... Line 273...
273
	Returns the number of distinct customers who have done successful transactions
273
	Returns the number of distinct customers who have done successful transactions
274
	*/
274
	*/
275
	i64 getNoOfCustomersWithSuccessfulTransaction(),
275
	i64 getNoOfCustomersWithSuccessfulTransaction(),
276
	
276
	
277
	/**
277
	/**
278
	Returns the maximum amount of a valid order. (OrderStatus >= OrderStatus.SUBMITTED_FOR_PROCESSING)
278
	Returns the minimum and maximum amounts of a valid order. (OrderStatus >= OrderStatus.SUBMITTED_FOR_PROCESSING)
-
 
279
	List contains two values, first minimum amount and second maximum amount.	
279
	*/
280
	*/
280
	double getMaxValidOrderAmount(),
281
	list<double> getValidOrdersAmountRange()
281
	
-
 
282
	/**
-
 
283
	Returns the minimum amount of a valid order. (OrderStatus >= OrderStatus.SUBMITTED_FOR_PROCESSING)
-
 
284
	*/
-
 
285
	double getMinValidOrderAmount(),
-
 
286
	
-
 
287
	
282
	
288
	
283
	
289
	
284
	
290
}
285
}
291
286