Subversion Repositories SmartDukaan

Rev

Rev 34254 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34240 tejus.loha 1
package com.spice.profitmandi.dao.service;
2
 
3
import com.spice.profitmandi.dao.model.purchaseSaleRatio.CatalogAgedModel;
4
 
5
import javax.mail.MessagingException;
6
import java.io.UnsupportedEncodingException;
7
import java.util.List;
8
 
9
public interface PurSaleService {
10
    void sendPursaleRatioReportOnMail() throws MessagingException, UnsupportedEncodingException;
11
 
12
    List<CatalogAgedModel> getMoreThen10DaysAgedCatalogModels();
13
}