package itn.let.mjo.tax.service;

import java.util.List;

public interface TaxService {

	TaxVO selectTaxInfo (TaxVO taxVO) throws Exception;
	
	List<TaxVO> selectTaxList(TaxVO taxVO) throws Exception;
	
	void updateTax(TaxVO taxVO) throws Exception ;
	
	void insertCashBill(TaxVO taxVO) throws Exception ;

	void deleteReceipts(TaxVO taxVO) throws Exception ;
	
	void deleteReceiptInfo(TaxVO taxVO) throws Exception ;
	
	int updateTaxForRefundCancle(TaxVO taxVO) throws Exception;
	
	void updateTaxReceiptFile(TaxVO taxVO) throws Exception;
}
