package pwc.taxtech.atms.service.impl;

import org.springframework.stereotype.Service;
import pwc.taxtech.atms.entity.Industry;

import java.util.List;

@Service
public class ProjectIndustryServiceImpl extends AbstractService {

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