//= require <mootools-core-1.3-full-nocompat>
//= require <puremvc-mootools-port>
//= require <findsalons/AsyncProxy>
var RetrieveListingPreviewCommand = function()
{
	this.Extends = SimpleCommand;

	this.execute = function(notification /* Notification */)
	{
		var listingId = notification.getBody();
		var asyncProxy = this.facade.retrieveProxy(AsyncProxy.NAME);
		asyncProxy.getListingPreview(listingId);
	};
};
RetrieveListingPreviewCommand = new Class(new RetrieveListingPreviewCommand());
