Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/cashbox/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sale/lib/cashbox/icorrection.php

<?php

namespace Bitrix\Sale\Cashbox;

use Bitrix\Sale;

interface ICorrection
{
	/**
	 * @param CorrectionCheck $check
	 * @return Sale\Result
	 */
	public function printCorrectionImmediately(CorrectionCheck $check);

	/**
	 * @param CorrectionCheck $check
	 * @return array
	 */
	public function buildCorrectionCheckQuery(CorrectionCheck $check);

	/**
	 * @param CorrectionCheck $check
	 * @return Sale\Result
	 */
	public function checkCorrection(CorrectionCheck $check);
}