Subversion Repositories SmartDukaan

Rev

Rev 34275 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34275 Rev 36687
Line 9... Line 9...
9
import java.util.List;
9
import java.util.List;
10
 
10
 
11
public interface PurSaleService {
11
public interface PurSaleService {
12
    void moreThen10DaysEgedStockReport() throws MessagingException, UnsupportedEncodingException, ProfitMandiBusinessException;
12
    void moreThen10DaysEgedStockReport() throws MessagingException, UnsupportedEncodingException, ProfitMandiBusinessException;
13
 
13
 
14
    List<CatalogAgedModel> getCatalogModelsOlderThan10Days(LocalDateTime startDate, LocalDateTime endDate);
14
    List<CatalogAgedModel> getCatalogModelsOlderThanAgeDays(LocalDateTime startDate, LocalDateTime endDate, int ageDays);
15
}
15
}