Subversion Repositories SmartDukaan

Rev

Rev 36854 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
34769 vikas.jang 1
package com.spice.profitmandi.dao.service;
2
 
3
import org.springframework.stereotype.Service;
4
 
34835 vikas 5
import java.io.File;
6
 
34769 vikas.jang 7
@Service
8
public interface LocationTrackingService {
9
 
34835 vikas 10
    public File generateReport(int userId, String startDate, String endDate) throws Exception;
36854 vikas 11
 
12
    public File generateRedesignedReport(int userId, String startDate, String endDate) throws Exception;
13
 
36858 vikas 14
    public void sendRedesignedReportEmails(String startDate, String endDate) throws Exception;
15
 
34769 vikas.jang 16
}