Rev 34254 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.model.purchaseSaleRatio.CatalogAgedModel;import javax.mail.MessagingException;import java.io.UnsupportedEncodingException;import java.time.LocalDateTime;import java.util.List;public interface PurSaleService {void moreThen10DaysEgedStockReport() throws MessagingException, UnsupportedEncodingException, ProfitMandiBusinessException;List<CatalogAgedModel> getCatalogModelsOlderThan10Days(LocalDateTime startDate, LocalDateTime endDate);}