Subversion Repositories SmartDukaan

Rev

Rev 34769 | Rev 36854 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34769 Rev 34835
Line 1... Line 1...
1
package com.spice.profitmandi.dao.service;
1
package com.spice.profitmandi.dao.service;
2
 
2
 
3
import org.springframework.stereotype.Service;
3
import org.springframework.stereotype.Service;
4
 
4
 
-
 
5
import java.io.File;
-
 
6
 
5
@Service
7
@Service
6
public interface LocationTrackingService {
8
public interface LocationTrackingService {
7
    
9
    
8
    void generateReport(String startDate, String endDate) throws Exception;
10
    public File generateReport(int userId, String startDate, String endDate) throws Exception;
9
    
11
    
10
}
12
}