TaxClassServiceImpl.java
Home
/
sm-core /
src /
main /
java /
com /
salesmanager /
core /
business /
tax /
service /
TaxClassServiceImpl.java
package com.salesmanager.core.business.tax.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.salesmanager.core.business.generic.exception.ServiceException;
import com.salesmanager.core.business.generic.service.SalesManagerEntityServiceImpl;
import com.salesmanager.core.business.merchant.model.MerchantStore;
import com.salesmanager.core.business.tax.dao.taxclass.TaxClassDao;
import com.salesmanager.core.business.tax.model.taxclass.TaxClass;
@Service("taxClassService")
public class TaxClassServiceImpl extends SalesManagerEntityServiceImpl<Long, TaxClass>
implements TaxClassService {
private TaxClassDao taxClassDao;
@Autowired
public TaxClassServiceImpl(TaxClassDao taxClassDao) {
super(taxClassDao);
this.taxClassDao = taxClassDao;
}
@Override
public List<TaxClass> listByStore(MerchantStore store) throws ServiceException {
return taxClassDao.listByStore(store);
}
@Override
public TaxClass getByCode(String code) throws ServiceException {
return taxClassDao.getByCode(code);
}
@Override
public TaxClass getByCode(String code, MerchantStore store) throws ServiceException {
return taxClassDao.getByCode(code, store);
}
@Override
public void delete(TaxClass taxClass) throws ServiceException {
TaxClass t = this.getById(taxClass.getId());
super.delete(t);
}
@Override
public TaxClass getById(Long id) {
return taxClassDao.getById(id);
}
}