Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 22471 |
ashik.ali |
1 |
package com.spice.profitmandi.service.aging;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
import org.springframework.stereotype.Service;
|
|
|
6 |
|
|
|
7 |
import com.spice.profitmandi.common.model.InventoryItemAgingModel;
|
|
|
8 |
|
|
|
9 |
@Service
|
|
|
10 |
public interface InventoryItemAgingService {
|
|
|
11 |
public List<InventoryItemAgingModel> getItemAgingByInterval(int fofoId, List<Integer> intervals);
|
|
|
12 |
}
|