Rev 22925 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.aging;import java.util.List;import org.springframework.stereotype.Service;import com.spice.profitmandi.common.model.InventoryItemAgingModel;@Servicepublic interface InventoryItemAgingService {public List<InventoryItemAgingModel> getItemAgingByInterval(int fofoId, List<Integer> intervals);}