| 34240 |
tejus.loha |
1 |
package com.spice.profitmandi.dao.service;
|
|
|
2 |
|
| 34275 |
tejus.loha |
3 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 34240 |
tejus.loha |
4 |
import com.spice.profitmandi.dao.model.purchaseSaleRatio.CatalogAgedModel;
|
|
|
5 |
|
|
|
6 |
import javax.mail.MessagingException;
|
|
|
7 |
import java.io.UnsupportedEncodingException;
|
| 34275 |
tejus.loha |
8 |
import java.time.LocalDateTime;
|
| 34240 |
tejus.loha |
9 |
import java.util.List;
|
|
|
10 |
|
|
|
11 |
public interface PurSaleService {
|
| 34275 |
tejus.loha |
12 |
void moreThen10DaysEgedStockReport() throws MessagingException, UnsupportedEncodingException, ProfitMandiBusinessException;
|
| 34240 |
tejus.loha |
13 |
|
| 36687 |
amit |
14 |
List<CatalogAgedModel> getCatalogModelsOlderThanAgeDays(LocalDateTime startDate, LocalDateTime endDate, int ageDays);
|
| 34240 |
tejus.loha |
15 |
}
|