ProjectIndustryServiceImpl.java 438 Bytes
package pwc.taxtech.atms.service.impl;

import java.util.List;

import org.springframework.stereotype.Service;

import pwc.taxtech.atms.entity.Industry;
import pwc.taxtech.atms.service.ProjectIndustryService;

@Service
public class ProjectIndustryServiceImpl extends AbstractService implements ProjectIndustryService {

	@Override
	public List<Industry> getAllAvailableIndustry() {
		return industryMapper.getAllAvailableIndustry();
	}
}