Subversion Repositories SmartDukaan

Rev

Rev 34254 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.service;

import com.spice.profitmandi.dao.model.purchaseSaleRatio.CatalogAgedModel;

import javax.mail.MessagingException;
import java.io.UnsupportedEncodingException;
import java.util.List;

public interface PurSaleService {
    void sendPursaleRatioReportOnMail() throws MessagingException, UnsupportedEncodingException;

    List<CatalogAgedModel> getMoreThen10DaysAgedCatalogModels();
}