Subversion Repositories SmartDukaan

Rev

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

Rev 34254 Rev 34275
Line 1... Line 1...
1
package com.spice.profitmandi.dao.service;
1
package com.spice.profitmandi.dao.service;
2
 
2
 
-
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
3
import com.spice.profitmandi.dao.model.purchaseSaleRatio.CatalogAgedModel;
4
import com.spice.profitmandi.dao.model.purchaseSaleRatio.CatalogAgedModel;
4
 
5
 
5
import javax.mail.MessagingException;
6
import javax.mail.MessagingException;
6
import java.io.UnsupportedEncodingException;
7
import java.io.UnsupportedEncodingException;
-
 
8
import java.time.LocalDateTime;
7
import java.util.List;
9
import java.util.List;
8
 
10
 
9
public interface PurSaleService {
11
public interface PurSaleService {
10
    void sendPurSaleRatioReportOnMail() throws MessagingException, UnsupportedEncodingException;
12
    void moreThen10DaysEgedStockReport() throws MessagingException, UnsupportedEncodingException, ProfitMandiBusinessException;
11
 
13
 
12
    List<CatalogAgedModel> getMoreThen10DaysAgedCatalogModels();
14
    List<CatalogAgedModel> getCatalogModelsOlderThan10Days(LocalDateTime startDate, LocalDateTime endDate);
13
}
15
}