📄 hibernatepricingdao.java~1~
字号:
package tarena.netctoss.dao;
import java.util.*;
import tarena.netctoss.exception.*;
import tarena.netctoss.model.*;
public class HibernatePricingDAO implements PricingDAO {
/**
* deletePricing
*
* @param pricing Tpricing
* @throws InfrastructureException
* @todo Implement this tarena.netctoss.dao.PricingDAO method
*/
public void deletePricing(Tpricing pricing) throws InfrastructureException {
}
/**
* deletePricing
*
* @param pricingId Long
* @throws InfrastructureException
* @todo Implement this tarena.netctoss.dao.PricingDAO method
*/
public void deletePricing(Long pricingId) throws InfrastructureException {
}
/**
* deletePricings
*
* @param pricingId Long[]
* @throws InfrastructureException
* @todo Implement this tarena.netctoss.dao.PricingDAO method
*/
public void deletePricings(Long[] pricingId) throws InfrastructureException {
}
/**
* insertPricing
*
* @param pricing Tpricing
* @throws InfrastructureException
* @todo Implement this tarena.netctoss.dao.PricingDAO method
*/
public void insertPricing(Tpricing pricing) throws InfrastructureException {
}
/**
* selectAllPricing
*
* @return Collection
* @throws InfrastructureException
* @todo Implement this tarena.netctoss.dao.PricingDAO method
*/
public Collection selectAllPricing() throws InfrastructureException {
return null;
}
/**
* selectPricingByBaseFeeAndRateFee
*
* @param baseFee double
* @param rateFee double
* @return boolean
* @throws InfrastructureException
* @todo Implement this tarena.netctoss.dao.PricingDAO method
*/
public boolean selectPricingByBaseFeeAndRateFee(double baseFee,
double rateFee) throws InfrastructureException {
return false;
}
/**
* selectPricingById
*
* @param pricingId Long
* @return Tpricing
* @throws InfrastructureException
* @todo Implement this tarena.netctoss.dao.PricingDAO method
*/
public Tpricing selectPricingById(Long pricingId) throws
InfrastructureException {
return null;
}
/**
* updatePricing
*
* @param pricing Tpricing
* @throws InfrastructureException
* @todo Implement this tarena.netctoss.dao.PricingDAO method
*/
public void updatePricing(Tpricing pricing) throws InfrastructureException {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -