Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.reportico;import org.springframework.stereotype.Service;import java.util.List;import java.util.Map;@Servicepublic interface ReporticoService {Map<String, Object> readXMLFile(String path) throws Exception;List<List<String>> executeCustomQuery(String query) throws Exception;}