Rev 36854 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.service;import org.springframework.stereotype.Service;import java.io.File;@Servicepublic interface LocationTrackingService {public File generateReport(int userId, String startDate, String endDate) throws Exception;public File generateRedesignedReport(int userId, String startDate, String endDate) throws Exception;public void sendRedesignedReportEmails(String startDate, String endDate) throws Exception;}